reap: init at 0.3-unreleased

There are two extra commits on master which this includes in addition
to 0.2.

+29
+27
pkgs/os-specific/linux/reap/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "reap"; 5 + version = "0.3-unreleased"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "leahneukirchen"; 9 + repo = "reap"; 10 + rev = "0e68d09804fb9ec82af37045fb37c2ceefa391d5"; 11 + hash = "sha256-4Bv7stW5PKcODQanup37YbiUWrEGR6BuSFXibAHmwn0="; 12 + }; 13 + 14 + makeFlags = [ "PREFIX=${placeholder "out"}" ]; 15 + 16 + postInstall = '' 17 + install -dm755 "$out/share/licenses/reap/" 18 + ''; 19 + 20 + meta = with lib; { 21 + homepage = "https://github.com/leahneukirchen/reap"; 22 + description = "run process until all its spawned processes are dead "; 23 + license = with licenses; [ publicDomain ]; 24 + platforms = platforms.linux; 25 + maintainers = [ maintainers.leahneukirchen ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 23327 23327 23328 23328 raspberrypi-armstubs = callPackage ../os-specific/linux/firmware/raspberrypi/armstubs.nix {}; 23329 23329 23330 + reap = callPackage ../os-specific/linux/reap { }; 23331 + 23330 23332 regionset = callPackage ../os-specific/linux/regionset { }; 23331 23333 23332 23334 rfkill_udev = callPackage ../os-specific/linux/rfkill/udev.nix { };