about summary refs log tree commit diff
path: root/tvix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-03-31T17·28+0200
committerclbot <clbot@tvl.fyi>2024-03-31T19·04+0000
commitade5567875dc6ad3dc09ac79a56c48a8ce892d3f (patch)
treee3fc2967ea195476a4f60c08bbbd2dc97bfe158b /tvix
parent4bfc23cb04a9628fd7dfaeb1483e2ad3bfc28f63 (diff)
chore(tvix/boot): bump u-root r/7822
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>
Diffstat (limited to 'tvix')
-rw-r--r--tvix/boot/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/tvix/boot/default.nix b/tvix/boot/default.nix
index 22a696060c..0f2edc3085 100644
--- a/tvix/boot/default.nix
+++ b/tvix/boot/default.nix
@@ -31,14 +31,14 @@ rec {
   });
 
   # A build framework for minimal initrds
-  uroot = pkgs.buildGoModule {
+  uroot = pkgs.buildGoModule rec {
     pname = "u-root";
-    version = "unstable-2023-09-20";
+    version = "0.14.0";
     src = pkgs.fetchFromGitHub {
       owner = "u-root";
       repo = "u-root";
-      rev = "72921548ce2e88c4c5b62e83c717cbd834b58067";
-      hash = "sha256-fEoUGqh6ZXprtSpJ55MeuSFe7L5A/rkIIVLCwxbPHzE=";
+      rev = "v${version}";
+      hash = "sha256-8zA3pHf45MdUcq/MA/mf0KCTxB1viHieU/oigYwIPgo=";
     };
     vendorHash = null;