summary refs log tree commit diff
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-02-10 17:56:59 +1000
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-27 15:04:37 -0800
commit836c6353cc33fd43e3c956040e77d050a4e6e727 (patch)
treecea91d14fe788686d60a022086578d9cd5e56147
parent177281ad00b6e5f1b3ba9acced399e2bc7d37340 (diff)
downloadnixpkgs-836c6353cc33fd43e3c956040e77d050a4e6e727.tar
nixpkgs-836c6353cc33fd43e3c956040e77d050a4e6e727.tar.gz
nixpkgs-836c6353cc33fd43e3c956040e77d050a4e6e727.tar.bz2
nixpkgs-836c6353cc33fd43e3c956040e77d050a4e6e727.tar.lz
nixpkgs-836c6353cc33fd43e3c956040e77d050a4e6e727.tar.xz
nixpkgs-836c6353cc33fd43e3c956040e77d050a4e6e727.tar.zst
nixpkgs-836c6353cc33fd43e3c956040e77d050a4e6e727.zip
linux_5_15: mark as broken on i686
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.15.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix
index 92fa05dbb02..e02262c79a4 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.15.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix
@@ -1,4 +1,4 @@
-{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
+{ lib, stdenv, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
 
 with lib;
 
@@ -11,6 +11,8 @@ buildLinux (args // rec {
   # branchVersion needs to be x.y
   extraMeta.branch = versions.majorMinor version;
 
+  extraMeta.broken = stdenv.isi686;
+
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
     sha256 = "0y9qahkya5dfnr6g04w5ym0p6h9ixmcdhvgz9g2b64aaaazgz6a3";