about summary refs log tree commit diff
path: root/pkgs/by-name/pr
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2023-11-26 16:11:16 +0200
committerEmery Hemingway <ehmry@posteo.net>2023-12-01 08:52:41 +0000
commit8fe28ecb250fcd75ff53ebd46a04f4ca952896f0 (patch)
tree0a763c6fbafa1ecb4a128d3635ae99e45cdab5e9 /pkgs/by-name/pr
parent6ac5a17bfac88a2241fa790b82fe1ca6a75209b7 (diff)
downloadnixlib-8fe28ecb250fcd75ff53ebd46a04f4ca952896f0.tar
nixlib-8fe28ecb250fcd75ff53ebd46a04f4ca952896f0.tar.gz
nixlib-8fe28ecb250fcd75ff53ebd46a04f4ca952896f0.tar.bz2
nixlib-8fe28ecb250fcd75ff53ebd46a04f4ca952896f0.tar.lz
nixlib-8fe28ecb250fcd75ff53ebd46a04f4ca952896f0.tar.xz
nixlib-8fe28ecb250fcd75ff53ebd46a04f4ca952896f0.tar.zst
nixlib-8fe28ecb250fcd75ff53ebd46a04f4ca952896f0.zip
preserves-tools: init at 4.992.2
https://preserves.dev/
Diffstat (limited to 'pkgs/by-name/pr')
-rw-r--r--pkgs/by-name/pr/preserves-tools/package.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/by-name/pr/preserves-tools/package.nix b/pkgs/by-name/pr/preserves-tools/package.nix
new file mode 100644
index 000000000000..7b8407aea02f
--- /dev/null
+++ b/pkgs/by-name/pr/preserves-tools/package.nix
@@ -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";
+  };
+}