lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

New package: runit 2.1.2

+52
+11
pkgs/tools/system/runit/Makefile.patch
··· 1 + diff -ur admin.orig/runit-2.1.2/src/Makefile admin/runit-2.1.2/src/Makefile 2 + --- admin.orig/runit-2.1.2/src/Makefile 2014-08-10 20:22:35.000000000 +0200 3 + +++ admin/runit-2.1.2/src/Makefile 2014-10-15 13:04:02.892937939 +0200 4 + @@ -234,7 +234,6 @@ 5 + 6 + hasshsgr.h: chkshsgr choose compile hasshsgr.h1 hasshsgr.h2 load \ 7 + tryshsgr.c warn-shsgr 8 + - ./chkshsgr || ( cat warn-shsgr; exit 1 ) 9 + ./choose clr tryshsgr hasshsgr.h1 hasshsgr.h2 > hasshsgr.h 10 + 11 + haswaitp.h: choose compile haswaitp.h1 haswaitp.h2 load trywaitp.c
+39
pkgs/tools/system/runit/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "runit-${version}"; 5 + version = "2.1.2"; 6 + 7 + src = fetchurl { 8 + url = "http://smarden.org/runit/${name}.tar.gz"; 9 + sha256 = "065s8w62r6chjjs6m9hapcagy33m75nlnxb69vg0f4ngn061dl3g"; 10 + }; 11 + 12 + phases = [ "unpackPhase" "patchPhase" "buildPhase" "checkPhase" "installPhase" ]; 13 + 14 + patches = [ ./Makefile.patch ]; 15 + 16 + buildPhase = '' 17 + cd ${name} 18 + make -C 'src' 19 + ''; 20 + 21 + checkPhase = '' 22 + make -C 'src' check 23 + ''; 24 + 25 + installPhase = '' 26 + mkdir -p $out/bin 27 + for f in $(cat package/commands); do 28 + mv src/$f $out/bin/ 29 + done 30 + ''; 31 + 32 + meta = with stdenv.lib; { 33 + description = "UNIX init scheme with service supervision"; 34 + license = licenses.bsd3; 35 + homePage = "http://smarden.org/runit"; 36 + maintainers = with maintainers; [ rickynils ]; 37 + platforms = platforms.linux; 38 + }; 39 + }
+2
pkgs/top-level/all-packages.nix
··· 12060 12060 12061 12061 rssglx = callPackage ../misc/screensavers/rss-glx { }; 12062 12062 12063 + runit = callPackage ../tools/system/runit { }; 12064 + 12063 12065 xlockmore = callPackage ../misc/screensavers/xlockmore { }; 12064 12066 12065 12067 sails = callPackage ../misc/sails { };