minimal-bootstrap.findutils{,-static}: 4.9.0 -> 4.10.0

This commit is contained in:
Aleksi Hannula
2026-01-14 22:47:34 +02:00
parent 3de87cafbd
commit a9e854e088
2 changed files with 7 additions and 5 deletions
@@ -14,11 +14,11 @@
}:
let
pname = "findutils";
version = "4.9.0";
version = "4.10.0";
src = fetchurl {
url = "mirror://gnu/findutils/findutils-${version}.tar.xz";
hash = "sha256-or+4wJ1DZ3DtxZ9Q+kg+eFsWGjt7nVR1c8sIBl/UYv4=";
hash = "sha256-E4fgtn/yR9Kr3pmPkN+/cMFJE5Glnd/suK5ph4nwpPU=";
};
in
bash.runCommand "${pname}-${version}"
@@ -69,7 +69,8 @@ bash.runCommand "${pname}-${version}"
bash ./configure \
--prefix=$out \
--build=${buildPlatform.config} \
--host=${hostPlatform.config}
--host=${hostPlatform.config} \
--disable-year2038
# Build
make -j $NIX_BUILD_CORES
@@ -18,11 +18,11 @@
}:
let
pname = "findutils-static";
version = "4.9.0";
version = "4.10.0";
src = fetchurl {
url = "mirror://gnu/findutils/findutils-${version}.tar.xz";
hash = "sha256-or+4wJ1DZ3DtxZ9Q+kg+eFsWGjt7nVR1c8sIBl/UYv4=";
hash = "sha256-E4fgtn/yR9Kr3pmPkN+/cMFJE5Glnd/suK5ph4nwpPU=";
};
in
bash.runCommand "${pname}-${version}"
@@ -68,6 +68,7 @@ bash.runCommand "${pname}-${version}"
--prefix=$out \
--build=${buildPlatform.config} \
--host=${hostPlatform.config} \
--disable-year2038 \
CC=musl-gcc \
CFLAGS=-static