mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
94d7d1fdbb
* Also a bunch of style cleanups (tabs, with args, ...). svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
21 lines
546 B
Nix
21 lines
546 B
Nix
{stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pcre-7.8";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/pcre/pcre-7.8.tar.bz2;
|
|
sha256 = "1zsqk352mx2zklf9bgpg9d88ckfdssbbbiyslhrycfckw8m3qpvr";
|
|
};
|
|
|
|
configureFlags = ''
|
|
${if unicodeSupport then "--enable-unicode-properties" else ""}
|
|
${if !cplusplusSupport then "--disable-cpp" else ""}
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.pcre.org/;
|
|
description = "A library for Perl Compatible Regular Expressions";
|
|
};
|
|
}
|