2015-10-28 10:45:32 +00:00
|
|
|
{ stdenv, fetchurl
|
2017-06-04 02:11:40 +01:00
|
|
|
, pcre, windows ? null
|
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
, variant ? null
|
2014-02-24 04:01:29 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 16:53:04 +00:00
|
|
|
|
2015-10-28 10:45:32 +00:00
|
|
|
assert elem variant [ null "cpp" "pcre16" "pcre32" ];
|
|
|
|
|
2016-03-28 11:26:46 +01:00
|
|
|
let
|
2017-10-30 12:25:31 +00:00
|
|
|
version = "8.41";
|
2016-04-07 13:35:03 +01:00
|
|
|
pname = if (variant == null) then "pcre"
|
|
|
|
else if (variant == "cpp") then "pcre-cpp"
|
|
|
|
else variant;
|
2016-03-28 11:26:46 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2016-04-07 13:35:03 +01:00
|
|
|
name = "${pname}-${version}";
|
2010-05-20 11:32:56 +01:00
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
src = fetchurl {
|
2016-04-07 13:35:03 +01:00
|
|
|
url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${version}.tar.bz2";
|
2017-10-30 12:25:31 +00:00
|
|
|
sha256 = "0c5m469p5pd7jip621ipq6hbgh7128lzh7xndllfgh77ban7wb76";
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2010-05-20 11:32:56 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "doc" "man" ];
|
2013-06-11 14:28:30 +01:00
|
|
|
|
2018-02-18 05:13:43 +00:00
|
|
|
configureFlags = optional (!hostPlatform.isRiscV) "--enable-jit" ++ [
|
2015-10-28 10:45:32 +00:00
|
|
|
"--enable-unicode-properties"
|
|
|
|
"--disable-cpp"
|
|
|
|
]
|
|
|
|
++ optional (variant != null) "--enable-${variant}";
|
2009-03-25 17:41:02 +00:00
|
|
|
|
2017-06-04 02:11:40 +01:00
|
|
|
buildInputs = optional (hostPlatform.libc == "msvcrt") windows.mingw_w64_pthreads;
|
|
|
|
|
2017-12-24 16:35:53 +00:00
|
|
|
# https://bugs.exim.org/show_bug.cgi?id=2173
|
|
|
|
patches = [ ./stacksize-detection.patch ];
|
|
|
|
|
2017-06-04 02:11:40 +01:00
|
|
|
doCheck = !(with hostPlatform; isCygwin || isFreeBSD) && hostPlatform == buildPlatform;
|
2013-10-08 19:58:34 +01:00
|
|
|
# XXX: test failure on Cygwin
|
|
|
|
# we are running out of stack on both freeBSDs on Hydra
|
2009-03-25 17:41:02 +00:00
|
|
|
|
2015-10-28 10:45:32 +00:00
|
|
|
postFixup = ''
|
2015-12-02 09:03:23 +00:00
|
|
|
moveToOutput bin/pcre-config "$dev"
|
2015-10-28 10:45:32 +00:00
|
|
|
''
|
|
|
|
+ optionalString (variant != null) ''
|
2016-06-22 17:35:28 +01:00
|
|
|
ln -sf -t "$out/lib/" '${pcre.out}'/lib/libpcre{,posix}.{so.*.*.*,*dylib}
|
2015-10-28 10:45:32 +00:00
|
|
|
'';
|
|
|
|
|
2009-03-25 17:41:02 +00:00
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.pcre.org/;
|
2009-03-25 17:41:02 +00:00
|
|
|
description = "A library for Perl Compatible Regular Expressions";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2010-10-05 14:16:53 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The PCRE library is a set of functions that implement regular
|
|
|
|
expression pattern matching using the same syntax and semantics as
|
|
|
|
Perl 5. PCRE has its own native API, as well as a set of wrapper
|
|
|
|
functions that correspond to the POSIX regular expression API. The
|
|
|
|
PCRE library is free, even for building proprietary software.
|
|
|
|
'';
|
|
|
|
|
2014-02-24 04:01:29 +00:00
|
|
|
platforms = platforms.all;
|
2009-03-25 17:41:02 +00:00
|
|
|
};
|
2003-11-03 10:22:00 +00:00
|
|
|
}
|