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 1 { 2 2 lib, 3 - buildGoModule, 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, 4 7 fetchFromGitHub, 5 8 coreutils, 6 9 bash, 10 + nix-update-script, 7 11 8 12 linuxManualConfig, 9 13 fetchurl, 10 14 linux_latest, 11 15 }: 12 16 13 - buildGoModule (finalAttrs: { 17 + buildGo124Module (finalAttrs: { 14 18 pname = "u-root"; 15 - version = "0.14.0-unstable-2024-09-26"; 19 + version = "0.15.0"; 16 20 17 21 src = fetchFromGitHub { 18 22 owner = "u-root"; 19 23 repo = "u-root"; 20 - rev = "a620c4fc0eeeaa71ea68c27d6ef96352ed814829"; 24 + tag = "v${finalAttrs.version}"; 21 25 hash = "sha256-8B2H3AwGo9friveBk4bijOph9bSSNR7PPKJYEuywgm4="; 22 26 }; 23 27 ··· 52 56 }; 53 57 allowImportFromDerivation = true; 54 58 }; 59 + updateScript = nix-update-script { }; 55 60 }; 56 61 57 62 meta = {