nixpkgs/pkgs/tools/security/bao/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
582 B
Nix
Raw Normal View History

2022-05-13 05:08:03 +00:00
{ lib
, fetchCrate
, fetchpatch
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "bao";
2023-06-09 05:26:33 +00:00
version = "0.12.1";
2022-05-13 05:08:03 +00:00
src = fetchCrate {
inherit version;
pname = "${pname}_bin";
2023-06-09 05:26:33 +00:00
sha256 = "sha256-+MjfqIg/aKPWhzxbPJ0dnS4egCj50Ib7ob3zXUSBXRg=";
2022-05-13 05:08:03 +00:00
};
2023-06-09 05:26:33 +00:00
cargoHash = "sha256-SNsRN5XgchZq6/BZnMeahIqnkP4Jq6bZxbE5cDVpsQA=";
2022-05-13 05:08:03 +00:00
meta = {
description = "An implementation of BLAKE3 verified streaming";
homepage = "https://github.com/oconnor663/bao";
maintainers = with lib.maintainers; [ amarshall ];
license = with lib.licenses; [ cc0 asl20 ];
};
}