rblake2sum: init at 0.3.1

This commit is contained in:
Dawid Ciężarkiewicz 2023-08-26 17:50:53 -07:00
parent 49479825a1
commit d16098555c
No known key found for this signature in database
GPG key ID: D0E972B6EC3C4E7C
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ 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 = "A recursive blake2 digest (hash) of a file-system path";
homepage = "https://github.com/crev-dev/rblake2sum";
license = [ licenses.mit ];
maintainers = with maintainers; [ dpc ];
};
}

View file

@ -6216,6 +6216,10 @@ with pkgs;
rare = python3Packages.callPackage ../games/rare { };
rblake2sum = callPackage ../tools/security/rblake2sum {
inherit (darwin.apple_sdk.frameworks) Security;
};
reg = callPackage ../tools/virtualization/reg { };
retool = callPackage ../applications/misc/retool { };