* 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
This commit is contained in:
parent
884b8c42d3
commit
5168fde6a6
2 changed files with 17 additions and 3 deletions
14
pkgs/development/libraries/pcre/7.8.nix
Normal file
14
pkgs/development/libraries/pcre/7.8.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{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,10 +1,10 @@
|
||||||
{stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}:
|
{stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "pcre-7.8";
|
name = "pcre-7.4";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.8.tar.bz2;
|
url = mirror://sourceforge/pcre/pcre-7.4.tar.bz2;
|
||||||
sha256 = "1zsqk352mx2zklf9bgpg9d88ckfdssbbbiyslhrycfckw8m3qpvr";
|
sha256 = "1rdks2h5f3p2d71c4jnxaic1c9gmgsfky80djnafcdbdrhzkiyx5";
|
||||||
};
|
};
|
||||||
configureFlags =
|
configureFlags =
|
||||||
(if unicodeSupport then
|
(if unicodeSupport then
|
||||||
|
|
Loading…
Reference in a new issue