core/pkgs/by-name/gn/gnugrep/default.nix

78 lines
2.4 KiB
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, stdenv, glibcLocales, fetchurl, pcre2, libiconv, perl }:
# Note: this package is used for bootstrapping fetchurl, and thus
# cannot use fetchpatch! All mutable patches (generated by GitHub or
# cgit) that are needed here should be included directly in Nixpkgs as
# files.
2024-05-13 21:24:10 +00:00
let version = "3.11";
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
in stdenv.mkDerivation {
2024-05-02 00:46:19 +00:00
pname = "gnugrep";
inherit version;
src = fetchurl {
url = "mirror://gnu/grep/grep-${version}.tar.xz";
hash = "sha256-HbKu3eidDepCsW2VKPiUyNFdrk4ZC1muzHj1qVEnbqs=";
};
# Some gnulib tests fail
# - on Musl: https://github.com/NixOS/nixpkgs/pull/228714
# - on x86_64-darwin: https://github.com/NixOS/nixpkgs/pull/228714#issuecomment-1576826330
2024-05-13 21:24:10 +00:00
postPatch = if stdenv.hostPlatform.isMusl
|| (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) then ''
2024-05-02 00:46:19 +00:00
sed -i 's:gnulib-tests::g' Makefile.in
2024-05-13 21:24:10 +00:00
'' else
null;
2024-05-02 00:46:19 +00:00
nativeCheckInputs = [ perl glibcLocales ];
outputs = [ "out" "info" ]; # the man pages are rather small
buildInputs = [ pcre2 libiconv ];
# cygwin: FAIL: multibyte-white-space
# freebsd: FAIL mb-non-UTF8-performance
# x86_64-darwin: fails 'stack-overflow' tests on Rosetta 2 emulator
2024-05-13 21:24:10 +00:00
doCheck = !stdenv.isCygwin && !stdenv.isFreeBSD
&& !(stdenv.isDarwin && stdenv.hostPlatform.isx86_64)
&& !stdenv.buildPlatform.isRiscV64;
2024-05-02 00:46:19 +00:00
# On macOS, force use of mkdir -p, since Grep's fallback
# (./install-sh) is broken.
preConfigure = ''
export MKDIR_P="mkdir -p"
'';
enableParallelBuilding = true;
# Fix reference to sh in bootstrap-tools, and invoke grep via
# absolute path rather than looking at argv[0].
2024-05-13 21:24:10 +00:00
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
'';
2024-05-02 00:46:19 +00:00
meta = with lib; {
homepage = "https://www.gnu.org/software/grep/";
description = "GNU implementation of the Unix grep command";
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.
'';
license = licenses.gpl3Plus;
2024-05-13 21:24:10 +00:00
maintainers = [ maintainers.das_j maintainers.m00wl ];
2024-05-02 00:46:19 +00:00
platforms = platforms.all;
mainProgram = "grep";
};
2024-05-13 21:24:10 +00:00
passthru = { inherit pcre2; };
2024-05-02 00:46:19 +00:00
}