2024-01-02 11:29:13 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "preserves-tools";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "4.994.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-+I2uxdAe4SHg8ZLRvkIUr862FH6GvCwnyhxcCPD3JBA=";
|
2024-01-02 11:29:13 +00:00
|
|
|
};
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
cargoHash = "sha256-09uxXD9EZzzk42tBYbuqaLRFyGmOUuvC7G0XMDjsK6E=";
|
2024-01-02 11:29:13 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|