504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
22 lines
605 B
Nix
22 lines
605 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "preserves-tools";
|
|
version = "4.992.2";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-1IX6jTAH6qWE8X7YtIka5Z4y70obiVotOXzRnu+Z6a0=";
|
|
};
|
|
|
|
cargoHash = "sha256-D/ZCKRqZtPoCJ9t+5+q1Zm79z3K6Rew4eyuyDiGVGUs=";
|
|
|
|
meta = {
|
|
description =
|
|
"Command-line utilities for working with Preserves documents";
|
|
homepage = "https://preserves.dev/doc/preserves-tool.html";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
mainProgram = "preserves-tool";
|
|
};
|
|
}
|