diff options
Diffstat (limited to 'pkgs')
| -rw-r--r-- | pkgs/default.nix | 13 | ||||
| -rw-r--r-- | pkgs/openrc/default.nix | 37 | 
2 files changed, 50 insertions, 0 deletions
| diff --git a/pkgs/default.nix b/pkgs/default.nix new file mode 100644 index 0000000..464c468 --- /dev/null +++ b/pkgs/default.nix @@ -0,0 +1,13 @@ +{ nixpkgs ? <nixpkgs>, nixlib ? nixpkgs.lib }: + +let +  pkgs = nixpkgs // openrcpkgs; +  callPackage = nixlib.callPackageWith pkgs; + +  openrcpkgs = with pkgs; { + +    openrc = callPackage ./openrc { }; + +  }; + +in openrcpkgs diff --git a/pkgs/openrc/default.nix b/pkgs/openrc/default.nix new file mode 100644 index 0000000..8c235e0 --- /dev/null +++ b/pkgs/openrc/default.nix @@ -0,0 +1,37 @@ +{ stdenv, lib, fetchgit +, meson, ninja, pkg-config +, pam, ncurses +}: + +stdenv.mkDerivation rec { +  pname = "openrc"; +  version = "0.44.10"; +  meta = with lib; { +    homepage = "https://github.com/OpenRC/openrc"; +    description = "OpenRC manages the services, startup and shutdown of a host"; +    platforms = with platforms; linux; +    license = licenses.bsd2; +  }; + +  src = fetchgit { +    url = "https://github.com/OpenRC/openrc.git"; +    rev = version; +    sha256 = "0azb3ywclzx6cz9bmfpc4aqysz1pq4akr882bvnqh2x78xixcydv"; +  }; + +  nativeBuildInputs = [ meson ninja pkg-config ]; +  buildInputs = [ pam ncurses ]; + +  preConfigure = "export DESTDIR=/"; +  mesonFlags = [ +    "-Dbranding=\"NIXOS\"" +    "-Dos=Linux" +    "-Dselinux=disabled" +    "-Daudit=disabled" +    "-Dsysvinit=false" +    "-Dtermcap=ncurses" +    "-Dnewnet=true" +    "-Drootprefix=${placeholder "out"}" +    "--sysconfdir=${placeholder "out"}/etc" +  ]; +} | 
