62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
|
{ lib
|
||
|
, rustPlatform
|
||
|
, fetchFromGitHub
|
||
|
, pkg-config
|
||
|
, libgit2
|
||
|
, openssl
|
||
|
, zlib
|
||
|
, stdenv
|
||
|
, darwin
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "tinymist";
|
||
|
# Please update the corresponding vscode extension when updating
|
||
|
# this derivation.
|
||
|
version = "0.11.4";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Myriad-Dreamin";
|
||
|
repo = "tinymist";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-zMwyM4Y+nn/u/UXGlOxGB/JApgmYQW4qAek40uJO0Fc=";
|
||
|
};
|
||
|
|
||
|
cargoLock = {
|
||
|
lockFile = ./Cargo.lock;
|
||
|
outputHashes = {
|
||
|
"typst-0.11.0" = "sha256-UzZ0tbC6Dhn178GQDyLl70WTp3h5WdaBCsEKgLisZ2M=";
|
||
|
"typst-syntax-0.7.0" = "sha256-yrtOmlFAKOqAmhCP7n0HQCOQpU3DWyms5foCdUb9QTg=";
|
||
|
"typstfmt_lib-0.2.7" = "sha256-LBYsTCjZ+U+lgd7Z3H1sBcWwseoHsuepPd66bWgfvhI=";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
libgit2
|
||
|
openssl
|
||
|
zlib
|
||
|
] ++ lib.optionals stdenv.isDarwin [
|
||
|
darwin.apple_sdk_11_0.frameworks.CoreFoundation
|
||
|
darwin.apple_sdk_11_0.frameworks.CoreServices
|
||
|
darwin.apple_sdk_11_0.frameworks.Security
|
||
|
darwin.apple_sdk_11_0.frameworks.SystemConfiguration
|
||
|
];
|
||
|
|
||
|
checkFlags = [
|
||
|
"--skip=e2e"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
changelog = "https://github.com/Myriad-Dreamin/tinymist/blob/${src.rev}/CHANGELOG.md";
|
||
|
description = "Tinymist is an integrated language service for Typst";
|
||
|
homepage = "https://github.com/Myriad-Dreamin/tinymist";
|
||
|
license = licenses.asl20;
|
||
|
mainProgram = "tinymist";
|
||
|
maintainers = with maintainers; [ lampros ];
|
||
|
};
|
||
|
}
|