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

Signed-off-by: Paul Meyer <katexochen0@gmail.com>

+9 -4
+9 -4
pkgs/by-name/u-/u-root/package.nix
··· 1 { 2 lib, 3 - buildGoModule, 4 fetchFromGitHub, 5 coreutils, 6 bash, 7 8 linuxManualConfig, 9 fetchurl, 10 linux_latest, 11 }: 12 13 - buildGoModule (finalAttrs: { 14 pname = "u-root"; 15 - version = "0.14.0-unstable-2024-09-26"; 16 17 src = fetchFromGitHub { 18 owner = "u-root"; 19 repo = "u-root"; 20 - rev = "a620c4fc0eeeaa71ea68c27d6ef96352ed814829"; 21 hash = "sha256-8B2H3AwGo9friveBk4bijOph9bSSNR7PPKJYEuywgm4="; 22 }; 23 ··· 52 }; 53 allowImportFromDerivation = true; 54 }; 55 }; 56 57 meta = {
··· 1 { 2 lib, 3 + # Build fails with Go 1.25, with the following error: 4 + # 'vendor/golang.org/x/tools/internal/tokeninternal/tokeninternal.go:64:9: invalid array length -delta * delta (constant -256 of type int64)' 5 + # Wait for upstream to update their vendored dependencies before unpinning. 6 + buildGo124Module, 7 fetchFromGitHub, 8 coreutils, 9 bash, 10 + nix-update-script, 11 12 linuxManualConfig, 13 fetchurl, 14 linux_latest, 15 }: 16 17 + buildGo124Module (finalAttrs: { 18 pname = "u-root"; 19 + version = "0.15.0"; 20 21 src = fetchFromGitHub { 22 owner = "u-root"; 23 repo = "u-root"; 24 + tag = "v${finalAttrs.version}"; 25 hash = "sha256-8B2H3AwGo9friveBk4bijOph9bSSNR7PPKJYEuywgm4="; 26 }; 27 ··· 56 }; 57 allowImportFromDerivation = true; 58 }; 59 + updateScript = nix-update-script { }; 60 }; 61 62 meta = {