summary refs log tree commit diff
diff options
context:
space:
mode:
authorInternetUnexplorer <internetunexplorer@gmail.com>2022-06-03 00:43:08 -0700
committerInternetUnexplorer <internetunexplorer@gmail.com>2022-06-03 01:10:18 -0700
commitc240539dbaeb605c089c1d4a599f4e3044f1137e (patch)
tree7cf849e865881b5877316d736dabed529f563bc6
parentf1c167688a6f81f4a51ab542e5f476c8c595e457 (diff)
downloadnixpkgs-c240539dbaeb605c089c1d4a599f4e3044f1137e.tar
nixpkgs-c240539dbaeb605c089c1d4a599f4e3044f1137e.tar.gz
nixpkgs-c240539dbaeb605c089c1d4a599f4e3044f1137e.tar.bz2
nixpkgs-c240539dbaeb605c089c1d4a599f4e3044f1137e.tar.lz
nixpkgs-c240539dbaeb605c089c1d4a599f4e3044f1137e.tar.xz
nixpkgs-c240539dbaeb605c089c1d4a599f4e3044f1137e.tar.zst
nixpkgs-c240539dbaeb605c089c1d4a599f4e3044f1137e.zip
linux_zen: 5.18.0-zen1 -> 5.18.1-zen1
This also disables WERROR, which is necessary until #175433 reaches
master (which disables it for all kernels).
-rw-r--r--pkgs/os-specific/linux/kernel/linux-zen.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-zen.nix b/pkgs/os-specific/linux/kernel/linux-zen.nix
index 6cd542c1072..0e9a632ddb5 100644
--- a/pkgs/os-specific/linux/kernel/linux-zen.nix
+++ b/pkgs/os-specific/linux/kernel/linux-zen.nix
@@ -2,7 +2,7 @@
 
 let
   # having the full version string here makes it easier to update
-  modDirVersion = "5.18.0-zen1";
+  modDirVersion = "5.18.1-zen1";
   parts = lib.splitString "-" modDirVersion;
   version = lib.elemAt parts 0;
   suffix = lib.elemAt parts 1;
@@ -20,11 +20,14 @@ buildLinux (args // {
     owner = "zen-kernel";
     repo = "zen-kernel";
     inherit rev;
-    sha256 = "sha256-A0QrY1REbRODnHtmyNqVaiLhDgYCECevfHZCxtoQ9kU=";
+    sha256 = "sha256-LCLfLE85NifuskYl2dxLOJEsUNHLegF8ecYyU4xOCtY=";
   };
 
   structuredExtraConfig = with lib.kernel; {
     ZEN_INTERACTIVE = yes;
+    # TODO: Remove once #175433 reaches master
+    # https://nixpk.gs/pr-tracker.html?pr=175433
+    WERROR = no;
   };
 
   extraMeta = {