summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-01-15 09:10:50 -0500
committerTim Steinbach <tim@nequissimus.com>2020-01-15 09:10:50 -0500
commit4d3f1ca18cf70966e3227e63024d70d049cf3e81 (patch)
tree9fec1910b4f0f9e05858e38663ad117d2b4e744c /pkgs/os-specific
parentcd6ac55fb1b4dc75418550cdd75edc8522bf1e9b (diff)
downloadnixpkgs-4d3f1ca18cf70966e3227e63024d70d049cf3e81.tar
nixpkgs-4d3f1ca18cf70966e3227e63024d70d049cf3e81.tar.gz
nixpkgs-4d3f1ca18cf70966e3227e63024d70d049cf3e81.tar.bz2
nixpkgs-4d3f1ca18cf70966e3227e63024d70d049cf3e81.tar.lz
nixpkgs-4d3f1ca18cf70966e3227e63024d70d049cf3e81.tar.xz
nixpkgs-4d3f1ca18cf70966e3227e63024d70d049cf3e81.tar.zst
nixpkgs-4d3f1ca18cf70966e3227e63024d70d049cf3e81.zip
linux: 4.14.164 -> 4.14.165
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 052217c0060..9bfa07ec460 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.164";
+  version = "4.14.165";
 
   # 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 = "0jzbgpxlfy64q7zaqix87k8ci1fr9lkx1xr9m5zjniziydhi00x2";
+    sha256 = "1iw8w3kfm8cs97imc6zz2wqzq9bhhlygcg7r8qslwks0hqivbbmh";
   };
 } // (args.argsOverride or {}))