summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndré Vitor de Lima Matos <andre.vmatos@gmail.com>2022-04-27 18:05:49 -0300
committerAndré Vitor de Lima Matos <andre.vmatos@gmail.com>2022-04-27 20:23:18 -0300
commit59d5009069d32e7266dd30ab0fa6be768b38bac8 (patch)
treeb91af5ad5afae749012fdec38d505be194b70f03
parent4dfaf3893c3f3de902b8cd56264c0fe661d611fb (diff)
downloadnixpkgs-59d5009069d32e7266dd30ab0fa6be768b38bac8.tar
nixpkgs-59d5009069d32e7266dd30ab0fa6be768b38bac8.tar.gz
nixpkgs-59d5009069d32e7266dd30ab0fa6be768b38bac8.tar.bz2
nixpkgs-59d5009069d32e7266dd30ab0fa6be768b38bac8.tar.lz
nixpkgs-59d5009069d32e7266dd30ab0fa6be768b38bac8.tar.xz
nixpkgs-59d5009069d32e7266dd30ab0fa6be768b38bac8.tar.zst
nixpkgs-59d5009069d32e7266dd30ab0fa6be768b38bac8.zip
linuxKernel.kernels.linux_zen: 5.17.2-zen3 -> 5.17.5-zen1
-rw-r--r--pkgs/os-specific/linux/kernel/linux-zen.nix4
-rwxr-xr-xpkgs/os-specific/linux/kernel/update-zen.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-zen.nix b/pkgs/os-specific/linux/kernel/linux-zen.nix
index 0d9d34588a9..aec27a7620a 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.17.2-zen3";
+  modDirVersion = "5.17.5-zen1";
   parts = lib.splitString "-" modDirVersion;
   version = lib.elemAt parts 0;
   suffix = lib.elemAt parts 1;
@@ -20,7 +20,7 @@ buildLinux (args // {
     owner = "zen-kernel";
     repo = "zen-kernel";
     inherit rev;
-    sha256 = "sha256-q6Cc3wQHDXzyt2hx3+CS8N74myC6ra/Y+8IHQxTkoLo=";
+    sha256 = "sha256-DWkdnSG+4qMAFdGDmtEItaQZnIiorxLYMqdq5eBqQfs=";
   };
 
   structuredExtraConfig = with lib.kernel; {
diff --git a/pkgs/os-specific/linux/kernel/update-zen.sh b/pkgs/os-specific/linux/kernel/update-zen.sh
index 1532d7be02b..48b29b6dd43 100755
--- a/pkgs/os-specific/linux/kernel/update-zen.sh
+++ b/pkgs/os-specific/linux/kernel/update-zen.sh
@@ -18,4 +18,4 @@ sed -i -e "s!modDirVersion = \".*\"!modDirVersion = \"${new}\"!" "$path"
 checksum=$(nix-prefetch "(import ${nixpkgs} {}).linuxPackages_zen.kernel")
 sed -i -e "s!sha256 = \".*\"!sha256 = \"${checksum}\"!" "$path"
 
-git commit -m "linux_zen: ${old} -> ${new}" $path
+git commit -m "linuxKernel.kernels.linux_zen: ${old} -> ${new}" $path