summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-4.14.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-08-16 07:36:45 -0400
committerTim Steinbach <tim@nequissimus.com>2019-08-16 08:00:53 -0400
commitb62ffec92b01caef7a9313e2c3e19b077967723f (patch)
tree9834840067b87b68c3b1adec24a352650310c308 /pkgs/os-specific/linux/kernel/linux-4.14.nix
parentb4e2efb00efbf90f10b70a1ee753daf6d430224f (diff)
downloadnixpkgs-b62ffec92b01caef7a9313e2c3e19b077967723f.tar
nixpkgs-b62ffec92b01caef7a9313e2c3e19b077967723f.tar.gz
nixpkgs-b62ffec92b01caef7a9313e2c3e19b077967723f.tar.bz2
nixpkgs-b62ffec92b01caef7a9313e2c3e19b077967723f.tar.lz
nixpkgs-b62ffec92b01caef7a9313e2c3e19b077967723f.tar.xz
nixpkgs-b62ffec92b01caef7a9313e2c3e19b077967723f.tar.zst
nixpkgs-b62ffec92b01caef7a9313e2c3e19b077967723f.zip
linux: 4.14.138 -> 4.14.139
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-4.14.nix')
-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 aed7c3acb78..03b293055da 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.138";
+  version = "4.14.139";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${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 = "0yw39cqpk6g42q0xcv2aq8yyzsi0kzx9nvlfbw0iyg58wcfvsl7j";
+    sha256 = "0hkhwcbxg6bry13w9kspx48b10274w6pgv200wh91fjd8jax8qlc";
   };
 } // (args.argsOverride or {}))