From fa8367c2d50781f3e49ed424ea61af0c77615069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 22 Apr 2023 17:31:32 +0200 Subject: [PATCH] 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) --- pkgs/os-specific/linux/kernel/linux-6.1.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/kernel/linux-6.1.nix b/pkgs/os-specific/linux/kernel/linux-6.1.nix index 0149c6061175..67dd7b811ed3 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 { }))