summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-12-21 10:51:27 -0500
committerTim Steinbach <tim@nequissimus.com>2020-12-21 12:48:17 -0500
commit4859bf287460102876966e91c4cee0c53b29f28e (patch)
treedef581d82ddb41cb5c38ce45617e2615fcade8c6 /pkgs/os-specific
parent6b4ee3bf3396983fddfa971a4200277f256da60f (diff)
downloadnixpkgs-4859bf287460102876966e91c4cee0c53b29f28e.tar
nixpkgs-4859bf287460102876966e91c4cee0c53b29f28e.tar.gz
nixpkgs-4859bf287460102876966e91c4cee0c53b29f28e.tar.bz2
nixpkgs-4859bf287460102876966e91c4cee0c53b29f28e.tar.lz
nixpkgs-4859bf287460102876966e91c4cee0c53b29f28e.tar.xz
nixpkgs-4859bf287460102876966e91c4cee0c53b29f28e.tar.zst
nixpkgs-4859bf287460102876966e91c4cee0c53b29f28e.zip
linux: 5.9.15 -> 5.9.16
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.9.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.9.nix b/pkgs/os-specific/linux/kernel/linux-5.9.nix
index 9e740c0c2a6..39cc9c56c5f 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.9.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.9.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.9.15";
+  version = "5.9.16";
 
   # 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 = "1vhaayqjv1ha3nsxy9zbsz497ba4d4a1g0gfhgxcvci8dp8djh2p";
+    sha256 = "11mbnjvb5d5gwbrwlkqvzpg1ij4m19l5wr3wca9iiyg5i2papmxh";
   };
 } // (args.argsOverride or {}))