preserves-tools: init at 4.992.2

https://preserves.dev/
This commit is contained in:
Emery Hemingway 2023-11-26 16:11:16 +02:00
parent 6ac5a17bfa
commit 8fe28ecb25

View File

@ -0,0 +1,22 @@
{ 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";
};
}