Merge pull request #233323 from emilytrau/minimal-grep

minimal-bootstrap.gnugrep: init at 2.4
This commit is contained in:
John Ericson 2023-05-22 07:05:33 -04:00 committed by GitHub
commit e43073225b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 66 additions and 0 deletions

View file

@ -15,6 +15,11 @@ lib.makeScope
coreutils = callPackage ./coreutils { tinycc = tinycc-mes; };
gnugrep = callPackage ./gnugrep {
bash = bash_2_05;
tinycc = tinycc-mes;
};
gnumake = callPackage ./gnumake { tinycc = tinycc-mes; };
gnupatch = callPackage ./gnupatch { tinycc = tinycc-mes; };
@ -40,6 +45,7 @@ lib.makeScope
test = kaem.runCommand "minimal-bootstrap-test" {} ''
echo ${bash_2_05.tests.get-version}
echo ${gnugrep.tests.get-version}
echo ${gnused.tests.get-version}
echo ${mes.compiler.tests.get-version}
echo ${tinycc-mes.compiler.tests.chain}

View file

@ -0,0 +1,60 @@
{ lib
, fetchurl
, bash
, tinycc
, gnumake
}:
let
pname = "gnugrep";
version = "2.4";
src = fetchurl {
url = "mirror://gnu/grep/grep-${version}.tar.gz";
sha256 = "05iayw5sfclc476vpviz67hdy03na0pz2kb5csa50232nfx34853";
};
# Thanks to the live-bootstrap project!
# See https://github.com/fosslinux/live-bootstrap/blob/1bc4296091c51f53a5598050c8956d16e945b0f5/sysa/grep-2.4
makefile = fetchurl {
url = "https://github.com/fosslinux/live-bootstrap/raw/1bc4296091c51f53a5598050c8956d16e945b0f5/sysa/grep-2.4/mk/main.mk";
sha256 = "08an9ljlqry3p15w28hahm6swnd3jxizsd2188przvvsj093j91k";
};
in
bash.runCommand "${pname}-${version}" {
inherit pname version;
nativeBuildInputs = [
tinycc.compiler
gnumake
];
passthru.tests.get-version = result:
bash.runCommand "${pname}-get-version-${version}" {} ''
${result}/bin/grep --version
mkdir ''${out}
'';
meta = with lib; {
description = "GNU implementation of the Unix grep command";
homepage = "https://www.gnu.org/software/grep";
license = licenses.gpl3Plus;
maintainers = teams.minimal-bootstrap.members;
mainProgram = "grep";
platforms = platforms.unix;
};
} ''
# Unpack
ungz --file ${src} --output grep.tar
untar --file grep.tar
rm grep.tar
cd grep-${version}
# Configure
cp ${makefile} Makefile
# Build
make CC="tcc -static -B ${tinycc.libs}/lib"
# Install
make install PREFIX=$out
''