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
35 lines
953 B
Nix
35 lines
953 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
installShellFiles,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "preserves-tools";
|
|
version = "4.996.1";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-Uyh5mXCypX3TDxxJtnTe6lBoVI8aqdG56ywn7htDGUY=";
|
|
};
|
|
|
|
cargoHash = "sha256-m07/fNuF78+PtG/trXZq9gllmKTt0w5BSMsq2UTKBbY=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd preserves-tool \
|
|
--bash <($out/bin/preserves-tool completions bash) \
|
|
--fish <($out/bin/preserves-tool completions fish) \
|
|
--zsh <($out/bin/preserves-tool completions zsh)
|
|
'';
|
|
|
|
meta = {
|
|
description = "Command-line utilities for working with Preserves documents";
|
|
homepage = "https://preserves.dev/doc/preserves-tool.html";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "preserves-tool";
|
|
};
|
|
}
|