Merge pull request #250018 from pjjw/pjjw/add-srisum

This commit is contained in:
Artturi 2023-09-06 23:35:33 +03:00 committed by GitHub
commit efd23a1c9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "srisum";
version = "5.0.0";
src = fetchFromGitHub {
owner = "zkat";
repo = "srisum-rs";
rev = "v${version}";
hash = "sha256-Nw3uTGOcz1ivAm9X+PnOdNA937wuK3vtJQ0iJHlHVdw=";
};
cargoHash = "sha256-q6FGykY+HmU3/jMaGRO36OlYGVLG9mU8yZ8j/Shux3s=";
doInstallCheck = true;
meta = with lib; {
description = "A command-line utility to compute and check subresource integrity hashes";
homepage = "https://github.com/zkat/srisum-rs";
changelog = "https://github.com/zkat/srisum-rs/raw/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ pjjw ];
platforms = platforms.all;
};
}

View file

@ -28867,6 +28867,8 @@ with pkgs;
skopeo = callPackage ../development/tools/skopeo { };
srisum = callPackage ../tools/misc/srisum { };
smem = callPackage ../os-specific/linux/smem { };
smimesign = callPackage ../os-specific/darwin/smimesign { };