nixpkgs/pkgs/development/libraries/pcre/7.8.nix
Eelco Dolstra 5168fde6a6 * Revert to 7.4 (but with an updated URL) since pcre is a part of
stdenv.  Time to reopen the stdenv branch?

svn path=/nixpkgs/trunk/; revision=12838
2008-09-10 11:33:46 +00:00

15 lines
478 B
Nix

{stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}:
stdenv.mkDerivation {
name = "pcre-7.8";
src = fetchurl {
url = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.8.tar.bz2;
sha256 = "1zsqk352mx2zklf9bgpg9d88ckfdssbbbiyslhrycfckw8m3qpvr";
};
configureFlags =
(if unicodeSupport then
"--enable-unicode-properties --enable-shared --disable-static"
else "") +
(if !cplusplusSupport then "--disable-cpp" else "");
}