summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-23 03:31:09 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-23 03:52:05 +0300
commit14f3be4cb0cc816f140af96178deb58fcefe71f4 (patch)
treecbe62734b09ccba5cd91a8aef0cbc27ef39b110c /pkgs/desktops
parentfbb7d9314897a6ca3238b65d6bb8f8f7108485d9 (diff)
downloadnixlib-14f3be4cb0cc816f140af96178deb58fcefe71f4.tar
nixlib-14f3be4cb0cc816f140af96178deb58fcefe71f4.tar.gz
nixlib-14f3be4cb0cc816f140af96178deb58fcefe71f4.tar.bz2
nixlib-14f3be4cb0cc816f140af96178deb58fcefe71f4.tar.lz
nixlib-14f3be4cb0cc816f140af96178deb58fcefe71f4.tar.xz
nixlib-14f3be4cb0cc816f140af96178deb58fcefe71f4.tar.zst
nixlib-14f3be4cb0cc816f140af96178deb58fcefe71f4.zip
treewide: Make explicit that 'dev' output of dbus_libs is used
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/gnome-3/3.20/core/empathy/default.nix4
-rw-r--r--pkgs/desktops/gnome-3/3.20/core/folks/default.nix2
-rw-r--r--pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix2
3 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/desktops/gnome-3/3.20/core/empathy/default.nix b/pkgs/desktops/gnome-3/3.20/core/empathy/default.nix
index 39706b49b179..9a29d11f1aea 100644
--- a/pkgs/desktops/gnome-3/3.20/core/empathy/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/empathy/default.nix
@@ -36,8 +36,8 @@ stdenv.mkDerivation rec {
                   file libtool librsvg ];
 
   NIX_CFLAGS_COMPILE = [ "-I${dbus_glib.dev}/include/dbus-1.0"
-                         "-I${dbus_libs}/include/dbus-1.0"
-                         "-I${dbus_libs}/lib/dbus-1.0/include" ];
+                         "-I${dbus_libs.dev}/include/dbus-1.0"
+                         "-I${dbus_libs.dev}/lib/dbus-1.0/include" ];
 
   preFixup = ''
     for f in $out/bin/* $out/libexec/*; do
diff --git a/pkgs/desktops/gnome-3/3.20/core/folks/default.nix b/pkgs/desktops/gnome-3/3.20/core/folks/default.nix
index 086a92a5e2ef..899ee8e4d752 100644
--- a/pkgs/desktops/gnome-3/3.20/core/folks/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/folks/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
   configureFlags = "--disable-fatal-warnings";
 
   NIX_CFLAGS_COMPILE = ["-I${nspr}/include/nspr" "-I${nss}/include/nss"
-                        "-I${dbus_glib.dev}/include/dbus-1.0" "-I${dbus_libs}/include/dbus-1.0"];
+                        "-I${dbus_glib.dev}/include/dbus-1.0" "-I${dbus_libs.dev}/include/dbus-1.0"];
 
   enableParallelBuilding = true;
 
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix
index 8ad6fd2cd13b..85c15042614b 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix
@@ -7,7 +7,7 @@
 stdenv.mkDerivation rec {
   inherit (import ./src.nix fetchurl) name src;
 
-  NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs}/include/dbus-1.0";
+  NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0";
 
   enableParallelBuilding = true;