about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-10-12 04:05:03 +0000
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-10-12 07:37:16 -0400
commite2be686e0a24e791ceb9a3b806aa949102bb344e (patch)
treed562fe5dbf73c65d09b3a00a6bf0a6403b39dd90 /pkgs/os-specific
parent2363ead00306ec8ff8e34ac8b855b4f81af00dfc (diff)
linux: 5.14.10 -> 5.14.11
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.14.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.14.nix b/pkgs/os-specific/linux/kernel/linux-5.14.nix
index c0864239133f1..465a3f82d515c 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.14.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.14.10";
+  version = "5.14.11";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "1n454038vp55wbi814fqpidjmk8k6p6h0jl07hknpd6imgh2bkj5";
+    sha256 = "0capilz3wx29pw7n2m5cn229vy9psrccmdspp27znhjkvwj0m0wk";
   };
 } // (args.argsOverride or { }))