chore(tvix/boot): bump u-root
Bump to the latest u-root release. This seems to be compatible with go 1.22, too, which previously segfaulted the compiler in cl/11289. Change-Id: Ie8a0d3cb51a435d6a0b194b38a9c83ee260618df Reviewed-on: https://cl.tvl.fyi/c/depot/+/11291 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
parent
4bfc23cb04
commit
ade5567875
1 changed files with 4 additions and 4 deletions
|
@ -31,14 +31,14 @@ rec {
|
||||||
});
|
});
|
||||||
|
|
||||||
# A build framework for minimal initrds
|
# A build framework for minimal initrds
|
||||||
uroot = pkgs.buildGoModule {
|
uroot = pkgs.buildGoModule rec {
|
||||||
pname = "u-root";
|
pname = "u-root";
|
||||||
version = "unstable-2023-09-20";
|
version = "0.14.0";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "u-root";
|
owner = "u-root";
|
||||||
repo = "u-root";
|
repo = "u-root";
|
||||||
rev = "72921548ce2e88c4c5b62e83c717cbd834b58067";
|
rev = "v${version}";
|
||||||
hash = "sha256-fEoUGqh6ZXprtSpJ55MeuSFe7L5A/rkIIVLCwxbPHzE=";
|
hash = "sha256-8zA3pHf45MdUcq/MA/mf0KCTxB1viHieU/oigYwIPgo=";
|
||||||
};
|
};
|
||||||
vendorHash = null;
|
vendorHash = null;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue