Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
27 lines
664 B
Nix
27 lines
664 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "rblake2sum";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crev-dev";
|
|
repo = "rblake2sum";
|
|
rev = "cdbaba9f198bd28bfad2fbc17011ce5c8c7ad957";
|
|
hash = "sha256-bzOjJ+/M0YWY4/r8cNARPVqbuLBeTllqFyVXhJz6ZMI=";
|
|
};
|
|
|
|
cargoHash = "sha256-wIJWwU4D0OeVa2RMgmpN512TIvNdcBdorXU8KfFRTIg=";
|
|
|
|
meta = with lib; {
|
|
description = "Recursive blake2 digest (hash) of a file-system path";
|
|
homepage = "https://github.com/crev-dev/rblake2sum";
|
|
license = [ licenses.mit ];
|
|
maintainers = with maintainers; [ dpc ];
|
|
mainProgram = "rblake2sum";
|
|
};
|
|
}
|