python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / pouf / default.nix
blobd9a4004110333043025892788a1107b481f97815
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "pouf";
9   version = "0.5.1";
11   src = fetchFromGitHub {
12     owner = "mothsart";
13     repo = pname;
14     rev = version;
15     sha256 = "1zz91r37d6nqvdy29syq853krqdkigiqihwz7ww9kvagfvzvdh13";
16   };
18   cargoSha256 = "1ikm9fqi37jznln2xsyzfm625lv8kwjzanpm3wglx2s1k1jkmcy9";
20   postInstall = "make PREFIX=$out copy-data";
22   meta = with lib; {
23     description = "A cli program for produce fake datas.";
24     homepage = "https://github.com/mothsart/pouf";
25     changelog = "https://github.com/mothsart/pouf/releases/tag/${version}";
26     maintainers = with maintainers; [ mothsart ];
27     license = with licenses; [ mit ];
28   };