about summary refs log tree commit diff
path: root/pkgs/tools/misc/pouf
diff options
context:
space:
mode:
authorJérémie Ferry <ferryjeremie@free.fr>2022-04-26 03:19:30 +0200
committerGitHub <noreply@github.com>2022-04-26 03:19:30 +0200
commit579330cb448161937f620a307983e78ce2ba3842 (patch)
treecfc7cc556fb99a0dac974bf37f11440af4fd9b1a /pkgs/tools/misc/pouf
parent30813ed97776053144ce041c6188c78c5fb00630 (diff)
pouf: init at 0.4.1 (#170330)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/tools/misc/pouf')
-rw-r--r--pkgs/tools/misc/pouf/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/misc/pouf/default.nix b/pkgs/tools/misc/pouf/default.nix
new file mode 100644
index 0000000000000..9a6520453938c
--- /dev/null
+++ b/pkgs/tools/misc/pouf/default.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 ];
+  };
+}