ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / po / pouf / package.nix
blob3aea1c0749a81df0b57ad819a4674a9ea09085c3
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "pouf";
9   version = "0.6.3";
11   src = fetchFromGitHub {
12     owner = "mothsart";
13     repo = pname;
14     rev = version;
15     hash = "sha256-tW86b9a7u1jyfmHjwjs+5DaUujRZH+VhGQsj0CBj0yk=";
16   };
18   cargoHash = "sha256-rVJAaeg27SdM8cTx12rKLIGEYtXUhLHXUYpT78oVNlo=";
20   postInstall = "make PREFIX=$out copy-data";
22   meta = with lib; {
23     description = "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     mainProgram = "pouf";
29   };