mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
23 lines
605 B
Nix
23 lines
605 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "preserves-tools";
|
|
version = "4.994.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-+I2uxdAe4SHg8ZLRvkIUr862FH6GvCwnyhxcCPD3JBA=";
|
|
};
|
|
|
|
cargoHash = "sha256-09uxXD9EZzzk42tBYbuqaLRFyGmOUuvC7G0XMDjsK6E=";
|
|
|
|
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";
|
|
};
|
|
}
|