nixpkgs-suyu/pkgs/tools/security/b3sum/default.nix

21 lines
545 B
Nix
Raw Normal View History

2021-05-28 21:13:52 +02:00
{ lib, fetchCrate, rustPlatform }:
2020-02-01 13:51:26 +01:00
rustPlatform.buildRustPackage rec {
pname = "b3sum";
2021-05-28 21:13:52 +02:00
version = "0.3.8";
2020-02-01 13:51:26 +01:00
2021-05-28 21:13:52 +02:00
src = fetchCrate {
inherit version pname;
sha256 = "1a42kwbl886yymm3v7h6y957x5f4yi9j40jy4szg9k0iy8bsdfmh";
2020-02-01 13:51:26 +01:00
};
2021-05-28 21:13:52 +02:00
cargoSha256 = "0v7ric12agicppg5ax5q0vwbslw7kmxpinafvdjj5sc2ysinw1zm";
2020-02-01 13:51:26 +01:00
meta = {
description = "BLAKE3 cryptographic hash function";
homepage = "https://github.com/BLAKE3-team/BLAKE3/";
2020-11-13 03:35:13 +01:00
maintainers = with lib.maintainers; [ fpletz ivan ];
2020-02-01 13:51:26 +01:00
license = with lib.licenses; [ cc0 asl20 ];
};
}