biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / bao / default.nix
blob5531b7c3323c5e9cac0ed3080cae48287df6df4f
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "bao";
8   version = "0.12.1";
10   src = fetchCrate {
11     inherit version;
12     pname = "${pname}_bin";
13     hash = "sha256-+MjfqIg/aKPWhzxbPJ0dnS4egCj50Ib7ob3zXUSBXRg=";
14   };
16   cargoHash = "sha256-SNsRN5XgchZq6/BZnMeahIqnkP4Jq6bZxbE5cDVpsQA=";
18   meta = {
19     description = "Implementation of BLAKE3 verified streaming";
20     homepage = "https://github.com/oconnor663/bao";
21     maintainers = with lib.maintainers; [ amarshall ];
22     license = with lib.licenses; [ cc0 asl20 ];
23     mainProgram = "bao";
24   };