2015-11-04 04:54:22 +00:00
|
|
|
{ stdenv, fetchurl, pcre, libiconv, perl }:
|
* 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
|
|
|
|
2017-07-05 08:47:03 +00:00
|
|
|
let version = "3.1"; in
|
2009-02-12 22:03:32 +00:00
|
|
|
|
2012-09-18 18:49:03 +00:00
|
|
|
stdenv.mkDerivation {
|
2009-02-10 22:46:00 +00:00
|
|
|
name = "gnugrep-${version}";
|
2010-11-09 13:12:31 +00:00
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
src = fetchurl {
|
2011-12-13 16:09:48 +00:00
|
|
|
url = "mirror://gnu/grep/grep-${version}.tar.xz";
|
2017-07-05 08:47:03 +00:00
|
|
|
sha256 = "0zm0ywmyz9g8vn1plw14mn8kj74yipx5qsljndbyfgmvndx5qqnv";
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2010-11-09 13:12:31 +00:00
|
|
|
|
2015-11-04 04:54:22 +00:00
|
|
|
# Perl is needed for testing
|
|
|
|
nativeBuildInputs = [ perl ];
|
2015-10-15 11:40:58 +00:00
|
|
|
outputs = [ "out" "info" ]; # the man pages are rather small
|
2013-02-28 15:49:46 +00:00
|
|
|
|
2014-11-26 23:16:50 +00:00
|
|
|
buildInputs = [ pcre libiconv ];
|
2012-09-18 18:49:03 +00:00
|
|
|
|
2014-10-24 00:58:58 +00:00
|
|
|
# cygwin: FAIL: multibyte-white-space
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 00:46:00 +00:00
|
|
|
# freebsd: FAIL mb-non-UTF8-performance
|
2016-01-12 11:06:41 +00:00
|
|
|
# all platforms: timing sensitivity in long-pattern-perf
|
|
|
|
#doCheck = !stdenv.isDarwin && !stdenv.isSunOS && !stdenv.isCygwin && !stdenv.isFreeBSD;
|
|
|
|
doCheck = false;
|
2009-02-10 22:46:00 +00:00
|
|
|
|
2017-08-06 22:05:18 +00:00
|
|
|
# On macOS, force use of mkdir -p, since Grep's fallback
|
2009-02-12 22:03:32 +00:00
|
|
|
# (./install-sh) is broken.
|
|
|
|
preConfigure = ''
|
|
|
|
export MKDIR_P="mkdir -p"
|
|
|
|
'';
|
|
|
|
|
2014-10-06 20:05:55 +00:00
|
|
|
# Fix reference to sh in bootstrap-tools, and invoke grep via
|
|
|
|
# absolute path rather than looking at argv[0].
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
rm $out/bin/egrep $out/bin/fgrep
|
|
|
|
echo "#! /bin/sh" > $out/bin/egrep
|
|
|
|
echo "exec $out/bin/grep -E \"\$@\"" >> $out/bin/egrep
|
|
|
|
echo "#! /bin/sh" > $out/bin/fgrep
|
|
|
|
echo "exec $out/bin/grep -F \"\$@\"" >> $out/bin/fgrep
|
|
|
|
chmod +x $out/bin/egrep $out/bin/fgrep
|
|
|
|
'';
|
|
|
|
|
2015-10-15 11:40:58 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-02-06 13:18:50 +00:00
|
|
|
homepage = http://www.gnu.org/software/grep/;
|
|
|
|
description = "GNU implementation of the Unix grep command";
|
2009-02-10 22:46:00 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The grep command searches one or more input files for lines
|
|
|
|
containing a match to a specified pattern. By default, grep
|
|
|
|
prints the matching lines.
|
|
|
|
'';
|
|
|
|
|
2015-10-15 11:40:58 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2010-11-09 13:12:31 +00:00
|
|
|
|
2015-10-15 11:40:58 +00:00
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
platforms = platforms.all;
|
2008-02-06 13:18:50 +00:00
|
|
|
};
|
2009-01-16 17:13:35 +00:00
|
|
|
|
|
|
|
passthru = {inherit pcre;};
|
2012-09-18 18:49:03 +00:00
|
|
|
}
|