summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2021-03-24 11:07:32 -0400
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-03-26 18:50:13 -0400
commit9ce0fb815c88e6028f3ce9a2c45cc02fc075e913 (patch)
tree5c4d3cf74e46c6335ff235596411f51985321c95
parent57ea233d162916dc384f5c84ae231951eda5a0e2 (diff)
downloadnixpkgs-9ce0fb815c88e6028f3ce9a2c45cc02fc075e913.tar
nixpkgs-9ce0fb815c88e6028f3ce9a2c45cc02fc075e913.tar.gz
nixpkgs-9ce0fb815c88e6028f3ce9a2c45cc02fc075e913.tar.bz2
nixpkgs-9ce0fb815c88e6028f3ce9a2c45cc02fc075e913.tar.lz
nixpkgs-9ce0fb815c88e6028f3ce9a2c45cc02fc075e913.tar.xz
nixpkgs-9ce0fb815c88e6028f3ce9a2c45cc02fc075e913.tar.zst
nixpkgs-9ce0fb815c88e6028f3ce9a2c45cc02fc075e913.zip
linux: 5.11.8 -> 5.11.9
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.11.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.11.nix b/pkgs/os-specific/linux/kernel/linux-5.11.nix
index 6f59b234ef4..cf9302757f6 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.11.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.11.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.11.8";
+  version = "5.11.9";
 
   # 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 = "17y8q0gy4b00rms6pgglzmzz4msvmn2frqvln9vac39m78k3kyci";
+    sha256 = "0dcqn6s85sd4zl7rv8ay88p5z12xvy2rma0dx6g6b480rg68sxal";
   };
 } // (args.argsOverride or {}))