pouf: init at 0.4.1 (#170330)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
30813ed977
commit
579330cb44
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/misc/pouf/default.nix
Normal file
27
pkgs/tools/misc/pouf/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pouf";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mothsart";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0q7kj6x61xci8piax6vg3bsm9di11li7pm84vj13iwahdydhs1hn";
|
||||
};
|
||||
|
||||
cargoSha256 = "128fgdp74lyv5k054cdjxzwmyb5cyy0jq0a9l4bsc34122mznnq7";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A 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 ];
|
||||
};
|
||||
}
|
|
@ -4036,6 +4036,8 @@ with pkgs;
|
|||
electron = electron_14;
|
||||
};
|
||||
|
||||
pouf = callPackage ../tools/misc/pouf { };
|
||||
|
||||
poweralertd = callPackage ../tools/misc/poweralertd { };
|
||||
|
||||
ps_mem = callPackage ../tools/system/ps_mem { };
|
||||
|
|
Loading…
Reference in a new issue