python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / bao / default.nix
blobcf6014c84fe9490f6f1bba35f47b40b7dc9396ca
1 { lib
2 , fetchCrate
3 , fetchpatch
4 , rustPlatform
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "bao";
9   version = "0.12.0";
11   src = fetchCrate {
12     inherit version;
13     pname = "${pname}_bin";
14     sha256 = "SkplBzor7Fv2+6K8wcTtZwjR66RfLPA/YNNUUHniWpM=";
15   };
17   cargoSha256 = "yr4HvtOWnU2dFTBgSsbVcuDELe1o1SEtZ7rN/ctKAdI=";
19   meta = {
20     description = "An implementation of BLAKE3 verified streaming";
21     homepage = "https://github.com/oconnor663/bao";
22     maintainers = with lib.maintainers; [ amarshall ];
23     license = with lib.licenses; [ cc0 asl20 ];
24   };