summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-01-12 16:23:06 -0500
committerTim Steinbach <tim@nequissimus.com>2020-01-12 16:45:23 -0500
commite69455a8be76b15878cb5041c0939c717e3b5de4 (patch)
tree2a120cf0f57a0304071293947286491084546424 /pkgs/os-specific
parentae9eac6698369774e383d7bb243aeea123fb589c (diff)
downloadnixpkgs-e69455a8be76b15878cb5041c0939c717e3b5de4.tar
nixpkgs-e69455a8be76b15878cb5041c0939c717e3b5de4.tar.gz
nixpkgs-e69455a8be76b15878cb5041c0939c717e3b5de4.tar.bz2
nixpkgs-e69455a8be76b15878cb5041c0939c717e3b5de4.tar.lz
nixpkgs-e69455a8be76b15878cb5041c0939c717e3b5de4.tar.xz
nixpkgs-e69455a8be76b15878cb5041c0939c717e3b5de4.tar.zst
nixpkgs-e69455a8be76b15878cb5041c0939c717e3b5de4.zip
linux: 4.14.163 -> 4.14.164
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.14.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix
index 4701dca2e90..052217c0060 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.14.163";
+  version = "4.14.164";
 
   # 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/v4.x/linux-${version}.tar.xz";
-    sha256 = "0jdh54rqdsb3b908v2q4xjn8y45b7rdnwgab0s4qf5alznfcqagb";
+    sha256 = "0jzbgpxlfy64q7zaqix87k8ci1fr9lkx1xr9m5zjniziydhi00x2";
   };
 } // (args.argsOverride or {}))