summary refs log tree commit diff
path: root/pkgs/development/libraries/folks
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2019-03-07 15:53:53 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-04-05 11:40:33 +0200
commit36e34b2126b7dabc4a380350fcc11ea2e546f0a5 (patch)
tree761e0fb4db2d96e152c31da5b803f456e901220c /pkgs/development/libraries/folks
parentf2bc6531eadabdce0016361186467d937a2fbb59 (diff)
downloadnixpkgs-36e34b2126b7dabc4a380350fcc11ea2e546f0a5.tar
nixpkgs-36e34b2126b7dabc4a380350fcc11ea2e546f0a5.tar.gz
nixpkgs-36e34b2126b7dabc4a380350fcc11ea2e546f0a5.tar.bz2
nixpkgs-36e34b2126b7dabc4a380350fcc11ea2e546f0a5.tar.lz
nixpkgs-36e34b2126b7dabc4a380350fcc11ea2e546f0a5.tar.xz
nixpkgs-36e34b2126b7dabc4a380350fcc11ea2e546f0a5.tar.zst
nixpkgs-36e34b2126b7dabc4a380350fcc11ea2e546f0a5.zip
folks: cleanup
Diffstat (limited to 'pkgs/development/libraries/folks')
-rw-r--r--pkgs/development/libraries/folks/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/folks/default.nix b/pkgs/development/libraries/folks/default.nix
index 2ce50a92ea3..57edbaef298 100644
--- a/pkgs/development/libraries/folks/default.nix
+++ b/pkgs/development/libraries/folks/default.nix
@@ -14,18 +14,18 @@ stdenv.mkDerivation rec {
   };
 
   propagatedBuildInputs = [ glib libgee sqlite ];
-  # dbus_daemon needed for tests
+
   buildInputs = [
-    dbus-glib telepathy-glib evolution-data-server dbus
+    dbus-glib telepathy-glib evolution-data-server
     libsecret libxml2 libsoup nspr nss db
   ];
+
+  checkInputs = [ dbus ];
+
   nativeBuildInputs = [ pkgconfig intltool vala gobject-introspection ];
 
   configureFlags = [ "--disable-fatal-warnings" ];
 
-  NIX_CFLAGS_COMPILE = ["-I${nss.dev}/include/nss"
-                        "-I${dbus-glib.dev}/include/dbus-1.0" "-I${dbus.dev}/include/dbus-1.0"];
-
   enableParallelBuilding = true;
 
   postBuild = "rm -rf $out/share/gtk-doc";