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-10 08:20:22 -0400
committerTim Steinbach <tim@nequissimus.com>2019-09-10 08:20:22 -0400
commit64bd7a34f996e0f7661f230e5906d04a5c1a7741 (patch)
tree8345eed736a50cca2b203327af6bdcff6f70b310 /pkgs/os-specific/linux/kernel/linux-4.14.nix
parentf024caa7a8f274a16048e71c30e1bac9e75c0ab4 (diff)
downloadnixpkgs-64bd7a34f996e0f7661f230e5906d04a5c1a7741.tar
nixpkgs-64bd7a34f996e0f7661f230e5906d04a5c1a7741.tar.gz
nixpkgs-64bd7a34f996e0f7661f230e5906d04a5c1a7741.tar.bz2
nixpkgs-64bd7a34f996e0f7661f230e5906d04a5c1a7741.tar.lz
nixpkgs-64bd7a34f996e0f7661f230e5906d04a5c1a7741.tar.xz
nixpkgs-64bd7a34f996e0f7661f230e5906d04a5c1a7741.tar.zst
nixpkgs-64bd7a34f996e0f7661f230e5906d04a5c1a7741.zip
linux: 4.14.142 -> 4.14.143
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 ae39047a9d3..0a0ccaffa7d 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.142";
+  version = "4.14.143";
 
   # 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 = "1wwhnm1n1b6yzsd2zzzf9i3n4hlvgnph70p67cwahw0ik4ssayz6";
+    sha256 = "14rxck0dd0rirj09aj4xsbylcvvfrgqxr1fx0c570dxr7kqg4d15";
   };
 } // (args.argsOverride or {}))