mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
40 lines
853 B
Nix
40 lines
853 B
Nix
|
{ stdenv, fetchurl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "runit-${version}";
|
||
|
version = "2.1.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://smarden.org/runit/${name}.tar.gz";
|
||
|
sha256 = "065s8w62r6chjjs6m9hapcagy33m75nlnxb69vg0f4ngn061dl3g";
|
||
|
};
|
||
|
|
||
|
phases = [ "unpackPhase" "patchPhase" "buildPhase" "checkPhase" "installPhase" ];
|
||
|
|
||
|
patches = [ ./Makefile.patch ];
|
||
|
|
||
|
buildPhase = ''
|
||
|
cd ${name}
|
||
|
make -C 'src'
|
||
|
'';
|
||
|
|
||
|
checkPhase = ''
|
||
|
make -C 'src' check
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/bin
|
||
|
for f in $(cat package/commands); do
|
||
|
mv src/$f $out/bin/
|
||
|
done
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "UNIX init scheme with service supervision";
|
||
|
license = licenses.bsd3;
|
||
|
homePage = "http://smarden.org/runit";
|
||
|
maintainers = with maintainers; [ rickynils ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|