Explicitly depend on pkgconfig

svn path=/nixpkgs/trunk/; revision=26050
This commit is contained in:
Yury G. Kudryashov 2011-02-22 06:19:17 +00:00
parent dcc137553c
commit db67fc27a3

@ -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 @@ stdenv.mkDerivation rec {
};
# 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/;