mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
30 lines
740 B
Nix
30 lines
740 B
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, Security
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "rblake2sum";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crev-dev";
|
|
repo = "rblake2sum";
|
|
rev = "cdbaba9f198bd28bfad2fbc17011ce5c8c7ad957";
|
|
hash = "sha256-bzOjJ+/M0YWY4/r8cNARPVqbuLBeTllqFyVXhJz6ZMI=";
|
|
};
|
|
|
|
cargoHash = "sha256-egwL3z7uB4AcRwPT0uPrenyh4FSxhbZKMdkPhRztMbs=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
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";
|
|
};
|
|
}
|