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

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

25 lines
569 B
Nix
Raw Normal View History

2022-05-13 07:08:03 +02:00
{ lib
, rustPlatform
, fetchCrate
2022-05-13 07:08:03 +02:00
}:
rustPlatform.buildRustPackage rec {
pname = "bao";
2023-06-09 07:26:33 +02:00
version = "0.12.1";
2022-05-13 07:08:03 +02:00
src = fetchCrate {
inherit version;
pname = "${pname}_bin";
2023-06-09 07:26:33 +02:00
sha256 = "sha256-+MjfqIg/aKPWhzxbPJ0dnS4egCj50Ib7ob3zXUSBXRg=";
2022-05-13 07:08:03 +02:00
};
2023-06-09 07:26:33 +02:00
cargoHash = "sha256-SNsRN5XgchZq6/BZnMeahIqnkP4Jq6bZxbE5cDVpsQA=";
2022-05-13 07:08:03 +02: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 ];
};
}