glib: Propagate pcre

http://hydra.nixos.org/build/3150785
This commit is contained in:
Eelco Dolstra 2012-10-09 11:34:02 -04:00
parent f81a86d4b9
commit a1300037d2

View File

@ -20,14 +20,11 @@ stdenv.mkDerivation rec {
}; };
# configure script looks for d-bus but it is only needed for tests # configure script looks for d-bus but it is only needed for tests
buildInputs = [ pcre ] buildInputs = [ libiconvOrNull ];
++ (if libiconvOrNull != null
then [ libiconvOrNull ]
else []);
buildNativeInputs = [ perl pkgconfig gettext python ]; buildNativeInputs = [ perl pkgconfig gettext python ];
propagatedBuildInputs = [ zlib libffi ]; propagatedBuildInputs = [ pcre zlib libffi ];
configureFlags = "--with-pcre=system --disable-fam"; configureFlags = "--with-pcre=system --disable-fam";