diff options
Diffstat (limited to 'pkgs/openrc/default.nix')
-rw-r--r-- | pkgs/openrc/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/openrc/default.nix b/pkgs/openrc/default.nix index 8c235e0..3cb6d8e 100644 --- a/pkgs/openrc/default.nix +++ b/pkgs/openrc/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ meson ninja pkg-config ]; buildInputs = [ pam ncurses ]; + outputs = [ "out" "dev" "man" "support" ]; + preConfigure = "export DESTDIR=/"; mesonFlags = [ "-Dbranding=\"NIXOS\"" @@ -34,4 +36,11 @@ stdenv.mkDerivation rec { "-Drootprefix=${placeholder "out"}" "--sysconfdir=${placeholder "out"}/etc" ]; + postInstall = '' + mkdir -p "$support/share/openrc/" + mv "$out/share/openrc/support" "$support/share/openrc/" + + #mkdir -p "$etc" + #mv "$out/etc" "$etc/" + ''; } |