summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-30 21:56:13 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-30 21:56:13 +0200
commita9780a095bd05c5104c643f927a680194d040a92 (patch)
tree0fbfee23559abd7e429dfc9066bd8a2747404612 /pkgs/tools/misc
parent91b01208a0bdbf88213d1a4b40a35d249c035ac7 (diff)
parentefb16b582944c426353e407861d7172f24d965dd (diff)
downloadnixlib-a9780a095bd05c5104c643f927a680194d040a92.tar
nixlib-a9780a095bd05c5104c643f927a680194d040a92.tar.gz
nixlib-a9780a095bd05c5104c643f927a680194d040a92.tar.bz2
nixlib-a9780a095bd05c5104c643f927a680194d040a92.tar.lz
nixlib-a9780a095bd05c5104c643f927a680194d040a92.tar.xz
nixlib-a9780a095bd05c5104c643f927a680194d040a92.tar.zst
nixlib-a9780a095bd05c5104c643f927a680194d040a92.zip
Merge branch 'master' into staging-next
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/colord/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/colord/default.nix b/pkgs/tools/misc/colord/default.nix
index a5d71a9487cc..e442850fbaaf 100644
--- a/pkgs/tools/misc/colord/default.nix
+++ b/pkgs/tools/misc/colord/default.nix
@@ -29,11 +29,11 @@ stdenv.mkDerivation rec {
     glib-compile-schemas $out/share/glib-2.0/schemas
   '';
 
-  PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "lib/systemd/system";
-  PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "lib/systemd/user";
-  PKG_CONFIG_SYSTEMD_TMPFILESDIR = "lib/tmpfiles.d";
-  PKG_CONFIG_BASH_COMPLETION_COMPLETIONSDIR= "share/bash-completion/completions";
-  PKG_CONFIG_UDEV_UDEVDIR = "lib/udev";
+  PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
+  PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
+  PKG_CONFIG_SYSTEMD_TMPFILESDIR = "${placeholder "out"}/lib/tmpfiles.d";
+  PKG_CONFIG_BASH_COMPLETION_COMPLETIONSDIR= "${placeholder "out"}/share/bash-completion/completions";
+  PKG_CONFIG_UDEV_UDEVDIR = "${placeholder "out"}/lib/udev";
 
   postFixup = ''
     wrapProgram "$out/libexec/colord-session" \