summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-01-23 07:10:18 -0500
committerTim Steinbach <tim@nequissimus.com>2019-01-23 07:10:18 -0500
commit5f0a4ee69fb9d4b0960651eef9c6edae1de03d3b (patch)
treeeb37ff6561d60045d7d1afa756ac6741e0cb1c82 /pkgs/os-specific
parent04d21ab8998c763da6aad7d3fe851b313f0332f1 (diff)
downloadnixpkgs-5f0a4ee69fb9d4b0960651eef9c6edae1de03d3b.tar
nixpkgs-5f0a4ee69fb9d4b0960651eef9c6edae1de03d3b.tar.gz
nixpkgs-5f0a4ee69fb9d4b0960651eef9c6edae1de03d3b.tar.bz2
nixpkgs-5f0a4ee69fb9d4b0960651eef9c6edae1de03d3b.tar.lz
nixpkgs-5f0a4ee69fb9d4b0960651eef9c6edae1de03d3b.tar.xz
nixpkgs-5f0a4ee69fb9d4b0960651eef9c6edae1de03d3b.tar.zst
nixpkgs-5f0a4ee69fb9d4b0960651eef9c6edae1de03d3b.zip
linux: 4.14.94 -> 4.14.95
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 efcf6c0d5bf..883c9868b05 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.94";
+  version = "4.14.95";
 
   # 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 = "1w933hd1ffd62znsha5z9qgjpsnh03f3r01f4b69l814n25m2a77";
+    sha256 = "1r2qrgwp3dfsrqshp765jjfh3frdhn9pkwml7h7544m3zkijjryf";
   };
 } // (args.argsOverride or {}))