u-root: 0.14.0-unstable-2024-09-26 -> 0.15.0

Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
Paul Meyer
2025-09-08 09:49:04 +02:00
parent eb5f0daf7f
commit cb2698f933
+9 -4
View File
@@ -1,23 +1,27 @@
{
lib,
buildGoModule,
# Build fails with Go 1.25, with the following error:
# 'vendor/golang.org/x/tools/internal/tokeninternal/tokeninternal.go:64:9: invalid array length -delta * delta (constant -256 of type int64)'
# Wait for upstream to update their vendored dependencies before unpinning.
buildGo124Module,
fetchFromGitHub,
coreutils,
bash,
nix-update-script,
linuxManualConfig,
fetchurl,
linux_latest,
}:
buildGoModule (finalAttrs: {
buildGo124Module (finalAttrs: {
pname = "u-root";
version = "0.14.0-unstable-2024-09-26";
version = "0.15.0";
src = fetchFromGitHub {
owner = "u-root";
repo = "u-root";
rev = "a620c4fc0eeeaa71ea68c27d6ef96352ed814829";
tag = "v${finalAttrs.version}";
hash = "sha256-8B2H3AwGo9friveBk4bijOph9bSSNR7PPKJYEuywgm4=";
};
@@ -52,6 +56,7 @@ buildGoModule (finalAttrs: {
};
allowImportFromDerivation = true;
};
updateScript = nix-update-script { };
};
meta = {