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-09-21 20:13:03 -0400
committerTim Steinbach <tim@nequissimus.com>2019-09-21 20:13:03 -0400
commit4c1fa37cd31723a6458efe357bb3857d988b9ab0 (patch)
treeeb6e0dda4b35a75a13421b6bfaa840790ba8e693 /pkgs/os-specific/linux/kernel/linux-4.14.nix
parent1e117cf7b1b6873000731b0e69de3701b78f843f (diff)
downloadnixpkgs-4c1fa37cd31723a6458efe357bb3857d988b9ab0.tar
nixpkgs-4c1fa37cd31723a6458efe357bb3857d988b9ab0.tar.gz
nixpkgs-4c1fa37cd31723a6458efe357bb3857d988b9ab0.tar.bz2
nixpkgs-4c1fa37cd31723a6458efe357bb3857d988b9ab0.tar.lz
nixpkgs-4c1fa37cd31723a6458efe357bb3857d988b9ab0.tar.xz
nixpkgs-4c1fa37cd31723a6458efe357bb3857d988b9ab0.tar.zst
nixpkgs-4c1fa37cd31723a6458efe357bb3857d988b9ab0.zip
linux: 4.14.145 -> 4.14.146
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 c5931f2da11..07f5974a2fe 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.145";
+  version = "4.14.146";
 
   # 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 = "0aa9b7ni6wadm43260vidqy4ngvws25027psbdnkl9hkcy0ba1gb";
+    sha256 = "1x9343pvlxdgx0zbsn12mcfhf6r8d9p57h6l5cw7krm3gs44pid3";
   };
 } // (args.argsOverride or {}))