minimal-bootstrap: Package updates (#508255)

This commit is contained in:
dish
2026-04-09 16:57:55 +00:00
committed by GitHub
7 changed files with 17 additions and 21 deletions
@@ -15,11 +15,11 @@
let
inherit (import ./common.nix { inherit lib; }) meta;
pname = "bootstrap-coreutils-musl";
version = "9.9";
version = "9.10";
src = fetchurl {
url = "mirror://gnu/coreutils/coreutils-${version}.tar.gz";
hash = "sha256-kacZ/Pkj3mhgFvLI0ISovh95PzQXOGEnPEZo98Za+Uo=";
hash = "sha256-4L3h+2hQlEf8cjzyUX6KjH+kZ2mRm7dJDtNQoukjhWI=";
};
configureFlags = [
@@ -33,9 +33,6 @@ let
"gl_cv_func_getcwd_path_max=\"no, but it is partly working\""
"gl_cv_have_unlimited_file_name_length=no"
# test crashes bash-2.05b?
"gl_cv_func_pthread_rwlock_good_waitqueue=no"
# depends on linux/version.h, which is not present at this stage
"gl_cv_func_copy_file_range=no"
"gl_cv_onwards_func_copy_file_range=no"
@@ -20,11 +20,11 @@
let
inherit (import ./common.nix { inherit lib; }) meta;
pname = "coreutils-static";
version = "9.9";
version = "9.10";
src = fetchurl {
url = "mirror://gnu/coreutils/coreutils-${version}.tar.gz";
hash = "sha256-kacZ/Pkj3mhgFvLI0ISovh95PzQXOGEnPEZo98Za+Uo=";
hash = "sha256-4L3h+2hQlEf8cjzyUX6KjH+kZ2mRm7dJDtNQoukjhWI=";
};
configureFlags = [
@@ -14,15 +14,16 @@
diffutils,
findutils,
gnutar,
linux-headers,
xz,
}:
let
pname = "gnum4";
version = "1.4.20";
version = "1.4.21";
src = fetchurl {
url = "mirror://gnu/m4/m4-${version}.tar.xz";
hash = "sha256-4jbqOhzPX2wnCxxLtgcm83H6SUWajqrryQshazKNrys=";
hash = "sha256-8lxqtRVIpzp1VYdC+wMeBiXWSF/l+RVZSdZIaiQIq2Y=";
};
in
bash.runCommand "${pname}-${version}"
@@ -70,7 +71,8 @@ bash.runCommand "${pname}-${version}"
--build=${buildPlatform.config} \
--host=${hostPlatform.config} \
--disable-dependency-tracking \
CC=musl-gcc
CC=musl-gcc \
CFLAGS=-I${linux-headers}/include
# Build
make -j $NIX_BUILD_CORES
@@ -20,11 +20,11 @@
}:
let
pname = "python";
version = "3.14.2";
version = "3.14.4";
src = fetchurl {
url = "https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz";
hash = "sha256-zlQ6uFS8JWthtx6bJ/gx/9G/1gpHnWOfi+f5dXz1c+k=";
hash = "sha256-2SPFEwPjjiSRNvwb3zVo1W7LAyFO/e9IUWF209f6rvg=";
};
patches = [
@@ -14,14 +14,11 @@
}:
let
pname = "xz";
# At least versions 5.6.4 and 5.8.2 crash with spurious OoM when decompressing
# certain tarballs, when compiled with tcc.
version = "5.4.7";
version = "5.8.3";
src = fetchurl {
url = "https://tukaani.org/xz/xz-${version}.tar.gz";
hash = "sha256-jbZmTEjKB5CLkrrtz+fzuiP0nvJHaGRRirXbZyODbnE=";
hash = "sha256-PToblzryGBFPT4ibuqL0wDfequDI6BXuw4HD1Ua5dKA=";
};
in
bash.runCommand "${pname}-${version}"
@@ -16,11 +16,11 @@
}:
let
pname = "xz";
version = "5.8.2";
version = "5.8.3";
src = fetchurl {
url = "https://tukaani.org/xz/xz-${version}.tar.gz";
hash = "sha256-zgnFCllieGuD5do4nJDdLBXs0JgKJY3QH3D5585YqPE=";
hash = "sha256-PToblzryGBFPT4ibuqL0wDfequDI6BXuw4HD1Ua5dKA=";
};
in
bash.runCommand "${pname}-${version}"
@@ -13,11 +13,11 @@
}:
let
pname = "zlib";
version = "1.3.1";
version = "1.3.2";
src = fetchurl {
url = "https://github.com/madler/zlib/releases/download/v${version}/zlib-${version}.tar.xz";
hash = "sha256-OO+WuN/lENQnB9nHgYd5FHklQRM+GHCEFGO/pz+IPjI=";
hash = "sha256-16BlR4Ok2lKdG7eTt62cMxgCCvd2Z7yuNfldDkKnkvM=";
};
in
bash.runCommand "${pname}-${version}"