about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-04-22 17:31:32 +0200
committerVladimír Čunát <v@cunat.cz>2023-04-22 17:34:13 +0200
commitfa8367c2d50781f3e49ed424ea61af0c77615069 (patch)
treec6b17e4e1087ff8d405df198148db52aaeabd48d
parent00cc237f08acfc4096ef5de8cf8782d3dcff7d19 (diff)
linux_6_1: rebuild on x86_64-linux
Just one-off work around these hash mismatches:
https://hydra.nixos.org/build/216994032#tabs-buildsteps
(I don't know a better way, I'm afraid)
-rw-r--r--pkgs/os-specific/linux/kernel/linux-6.1.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-6.1.nix b/pkgs/os-specific/linux/kernel/linux-6.1.nix
index 0149c60611753..67dd7b811ed39 100644
--- a/pkgs/os-specific/linux/kernel/linux-6.1.nix
+++ b/pkgs/os-specific/linux/kernel/linux-6.1.nix
@@ -15,4 +15,6 @@ buildLinux (args // rec {
     url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
     sha256 = "149h95r5msvqah868zd36y92ls9h41cr1rb5vzinl20mxdn46wnb";
   };
+  # TODO: possible to remove after any rebuild, e.g. after update.
+  extraConfig = lib.optionalString (buildPackages.system == "x86_64-linux") "\n";
 } // (args.argsOverride or { }))