Pass pkgconfig to strigi

svn path=/nixpkgs/trunk/; revision=31199
This commit is contained in:
Yury G. Kudryashov 2012-01-02 11:16:48 +00:00
parent 78c300f015
commit 0c824aa456

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, cmake, qt4, perl, bzip2, libxml2, exiv2
, clucene_core, fam, zlib, dbus_tools
, clucene_core, fam, zlib, dbus_tools, pkgconfig
}:
stdenv.mkDerivation rec {
@ -16,7 +16,9 @@ stdenv.mkDerivation rec {
CLUCENE_HOME = clucene_core;
buildInputs =
[ cmake perl zlib bzip2 stdenv.gcc.libc libxml2 qt4 exiv2 clucene_core fam dbus_tools ];
[ zlib bzip2 stdenv.gcc.libc libxml2 qt4 exiv2 clucene_core fam dbus_tools ];
buildNativeInputs = [ cmake pkgconfig perl ];
enableParallelBuilding = true;