base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / po / pouf / package.nix
blob0754ca0c09f1ac97d7d842b157152f6679c801d2
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "pouf";
8   version = "0.6.3";
10   src = fetchFromGitHub {
11     owner = "mothsart";
12     repo = pname;
13     rev = version;
14     hash = "sha256-tW86b9a7u1jyfmHjwjs+5DaUujRZH+VhGQsj0CBj0yk=";
15   };
17   cargoHash = "sha256-rVJAaeg27SdM8cTx12rKLIGEYtXUhLHXUYpT78oVNlo=";
19   postInstall = "make PREFIX=$out copy-data";
21   meta = with lib; {
22     description = "CLI program for produce fake datas";
23     homepage = "https://github.com/mothsart/pouf";
24     changelog = "https://github.com/mothsart/pouf/releases/tag/${version}";
25     maintainers = with maintainers; [ mothsart ];
26     license = with licenses; [ mit ];
27     mainProgram = "pouf";
28   };