Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
80 lines
1.9 KiB
Nix
80 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
pkg-config,
|
|
openssl,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
callPackage,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "typst";
|
|
version = "0.13.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "typst";
|
|
repo = "typst";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-vbBwIQt4xWZaKpXgFwDsRQIQ0mmsQPRR39m8iZnnuj0=";
|
|
};
|
|
|
|
cargoHash = "sha256-4kVj2BODEFjLcrh5sxfcgsdLF2Zd3K1GnhA4DEz1Nl4=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
];
|
|
|
|
env = {
|
|
GEN_ARTIFACTS = "artifacts";
|
|
OPENSSL_NO_VENDOR = true;
|
|
# to not have "unknown hash" in help output
|
|
TYPST_VERSION = finalAttrs.version;
|
|
};
|
|
|
|
# Fix for "Found argument '--test-threads' which wasn't expected, or isn't valid in this context"
|
|
postPatch = ''
|
|
substituteInPlace tests/src/tests.rs --replace-fail 'ARGS.num_threads' 'ARGS.test_threads'
|
|
substituteInPlace tests/src/args.rs --replace-fail 'num_threads' 'test_threads'
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage crates/typst-cli/artifacts/*.1
|
|
installShellCompletion \
|
|
crates/typst-cli/artifacts/typst.{bash,fish} \
|
|
--zsh crates/typst-cli/artifacts/_typst
|
|
'';
|
|
|
|
cargoTestFlags = [ "--workspace" ];
|
|
|
|
doInstallCheck = true;
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "--version";
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
packages = callPackage ./typst-packages.nix { };
|
|
withPackages = callPackage ./with-packages.nix { };
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/typst/typst/releases/tag/v${finalAttrs.version}";
|
|
description = "New markup-based typesetting system that is powerful and easy to learn";
|
|
homepage = "https://github.com/typst/typst";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "typst";
|
|
maintainers = with lib.maintainers; [
|
|
figsoda
|
|
kanashimia
|
|
RossSmyth
|
|
];
|
|
};
|
|
})
|