* pcre 7.8.
svn path=/nixpkgs/branches/stdenv-updates/; revision=12984
This commit is contained in:
parent
a4b6f1066c
commit
19ebc883e1
@ -1,14 +0,0 @@
|
|||||||
{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 "");
|
|
||||||
}
|
|
@ -1,14 +1,13 @@
|
|||||||
{stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}:
|
{stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "pcre-7.4";
|
name = "pcre-7.8";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/pcre/pcre-7.4.tar.bz2;
|
url = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.8.tar.bz2;
|
||||||
sha256 = "1rdks2h5f3p2d71c4jnxaic1c9gmgsfky80djnafcdbdrhzkiyx5";
|
sha256 = "1zsqk352mx2zklf9bgpg9d88ckfdssbbbiyslhrycfckw8m3qpvr";
|
||||||
};
|
};
|
||||||
configureFlags =
|
configureFlags = ''
|
||||||
(if unicodeSupport then
|
${if unicodeSupport then "--enable-unicode-properties --enable-shared --disable-static" else ""}
|
||||||
"--enable-unicode-properties --enable-shared --disable-static"
|
${if !cplusplusSupport then "--disable-cpp" else ""}
|
||||||
else "") +
|
'';
|
||||||
(if !cplusplusSupport then "--disable-cpp" else "");
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user