pouf: init at 0.4.1 (#170330)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Jérémie Ferry 2 years ago committed by GitHub
parent 30813ed977
commit 579330cb44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 27
      pkgs/tools/misc/pouf/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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…
Cancel
Save