mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
3df6bb2c85
Conflicts: pkgs/applications/blockchains/polkadot/default.nix
30 lines
720 B
Nix
30 lines
720 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pouf";
|
|
version = "0.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mothsart";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-tW86b9a7u1jyfmHjwjs+5DaUujRZH+VhGQsj0CBj0yk=";
|
|
};
|
|
|
|
cargoHash = "sha256-rVJAaeg27SdM8cTx12rKLIGEYtXUhLHXUYpT78oVNlo=";
|
|
|
|
postInstall = "make PREFIX=$out copy-data";
|
|
|
|
meta = with lib; {
|
|
description = "CLI program for produce fake datas";
|
|
homepage = "https://github.com/mothsart/pouf";
|
|
changelog = "https://github.com/mothsart/pouf/releases/tag/${version}";
|
|
maintainers = with maintainers; [ mothsart ];
|
|
license = with licenses; [ mit ];
|
|
mainProgram = "pouf";
|
|
};
|
|
}
|