python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / wagyu / default.nix
blob59748992dae0527e98908f0e48613dc68244dd71
1 { lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "wagyu";
5   version = "0.6.1";
7   src = fetchFromGitHub {
8     owner = "ArgusHQ";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1646j0lgg3hhznifvbkvr672p3yqlcavswijawaxq7n33ll8vmcn";
12   };
14   cargoSha256 = "10al0j8ak95x4d85lzphgq8kmdnb809l6gahfp5miyvsfd4dxmpi";
16   buildInputs = lib.optional stdenv.isDarwin Security;
18   meta = with lib; {
19     description = "Rust library for generating cryptocurrency wallets";
20     homepage = "https://github.com/ArgusHQ/wagyu";
21     license = with licenses; [ mit asl20 ];
22     maintainers = [ maintainers.offline ];
23   };