Author: urkud
Date: Tue Feb 22 06:19:17 2011
New Revision: 26050
URL: https://svn.nixos.org/websvn/nix/?rev=26050&sc=1

Log:
Explicitly depend on pkgconfig

Modified:
   nixpkgs/trunk/pkgs/desktops/kde-4.6/support/soprano/default.nix

Modified: nixpkgs/trunk/pkgs/desktops/kde-4.6/support/soprano/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/desktops/kde-4.6/support/soprano/default.nix     Tue Feb 
22 06:19:11 2011        (r26049)
+++ nixpkgs/trunk/pkgs/desktops/kde-4.6/support/soprano/default.nix     Tue Feb 
22 06:19:17 2011        (r26050)
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, cmake, qt4, cluceneCore, redland, libiodbc}:
+{stdenv, fetchurl, cmake, qt4, cluceneCore, redland, libiodbc, pkgconfig}:
 
 stdenv.mkDerivation rec {
   name = "soprano-2.6.0";
@@ -9,7 +9,8 @@
   };
 
   # We disable the Java backend, since we do not need them and they make the 
closure size much bigger
-  buildInputs = [ cmake qt4 cluceneCore redland libiodbc ];
+  buildInputs = [ qt4 cluceneCore redland libiodbc ];
+  buildNativeInputs = [ cmake pkgconfig ];
 
   meta = {
     homepage = http://soprano.sourceforge.net/;
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to