chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pr / preserves-tools / package.nix
blob170184efe72f0b83f5d09ec917722a19a2136ed6
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "preserves-tools";
5   version = "4.994.0";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-+I2uxdAe4SHg8ZLRvkIUr862FH6GvCwnyhxcCPD3JBA=";
10   };
12   cargoHash = "sha256-09uxXD9EZzzk42tBYbuqaLRFyGmOUuvC7G0XMDjsK6E=";
14   meta = {
15     description =
16       "Command-line utilities for working with Preserves documents";
17     homepage = "https://preserves.dev/doc/preserves-tool.html";
18     license = lib.licenses.asl20;
19     maintainers = with lib.maintainers; [ ehmry ];
20     mainProgram = "preserves-tool";
21   };