summary refs log tree commit diff
path: root/pkgs/os-specific/linux/reap
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2022-04-02 18:07:02 +0200
committerProfpatsch <mail@profpatsch.de>2022-04-03 14:13:53 +0200
commit5be97bb4aa028f101b8b42848870ae661c905660 (patch)
treea29efe2bcebf8297a84816dc7244c05e0b94d79b /pkgs/os-specific/linux/reap
parente65b825672d6e1807101fcd4d39ead3bf07e235d (diff)
downloadnixpkgs-5be97bb4aa028f101b8b42848870ae661c905660.tar
nixpkgs-5be97bb4aa028f101b8b42848870ae661c905660.tar.gz
nixpkgs-5be97bb4aa028f101b8b42848870ae661c905660.tar.bz2
nixpkgs-5be97bb4aa028f101b8b42848870ae661c905660.tar.lz
nixpkgs-5be97bb4aa028f101b8b42848870ae661c905660.tar.xz
nixpkgs-5be97bb4aa028f101b8b42848870ae661c905660.tar.zst
nixpkgs-5be97bb4aa028f101b8b42848870ae661c905660.zip
reap: init at 0.3-unreleased
There are two extra commits on master which this includes in addition
to 0.2.
Diffstat (limited to 'pkgs/os-specific/linux/reap')
-rw-r--r--pkgs/os-specific/linux/reap/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/reap/default.nix b/pkgs/os-specific/linux/reap/default.nix
new file mode 100644
index 00000000000..fbbabc96c78
--- /dev/null
+++ b/pkgs/os-specific/linux/reap/default.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  pname = "reap";
+  version = "0.3-unreleased";
+
+  src = fetchFromGitHub {
+    owner = "leahneukirchen";
+    repo = "reap";
+    rev = "0e68d09804fb9ec82af37045fb37c2ceefa391d5";
+    hash = "sha256-4Bv7stW5PKcODQanup37YbiUWrEGR6BuSFXibAHmwn0=";
+  };
+
+  makeFlags = [ "PREFIX=${placeholder "out"}" ];
+
+  postInstall = ''
+    install -dm755 "$out/share/licenses/reap/"
+  '';
+
+  meta = with lib; {
+    homepage = "https://github.com/leahneukirchen/reap";
+    description = "run process until all its spawned processes are dead ";
+    license = with licenses; [ publicDomain ];
+    platforms = platforms.linux;
+    maintainers = [ maintainers.leahneukirchen ];
+  };
+}