summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2018-02-03 20:38:25 -0500
committerTim Steinbach <tim@nequissimus.com>2018-02-03 20:38:25 -0500
commit8c280d3ad520fd604f154b863aede0929df5f870 (patch)
tree0924266fe6d76f25ba61f10da534341f4cfba3e6 /pkgs
parent4069faad7f80f5a42488c65f57a9b5c56a44bf34 (diff)
downloadnixlib-8c280d3ad520fd604f154b863aede0929df5f870.tar
nixlib-8c280d3ad520fd604f154b863aede0929df5f870.tar.gz
nixlib-8c280d3ad520fd604f154b863aede0929df5f870.tar.bz2
nixlib-8c280d3ad520fd604f154b863aede0929df5f870.tar.lz
nixlib-8c280d3ad520fd604f154b863aede0929df5f870.tar.xz
nixlib-8c280d3ad520fd604f154b863aede0929df5f870.tar.zst
nixlib-8c280d3ad520fd604f154b863aede0929df5f870.zip
linux: 4.15 -> 4.15.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.15.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.15.nix b/pkgs/os-specific/linux/kernel/linux-4.15.nix
index 0f1aae1aa1bd..fa9d0b4bcdad 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.15.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.15.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 import ./generic.nix (args // rec {
-  version = "4.15";
+  version = "4.15.1";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
@@ -13,6 +13,6 @@ import ./generic.nix (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
-    sha256 = "0sd7l9n9h7vf9c6gd6ciji28hawda60yj0llh17my06m0s4lf9js";
+    sha256 = "1pxgs5wqmidwa5lz6q1m9gz6jyvhvlgy8r5bs48cm08b0vcwsvlq";
   };
 } // (args.argsOverride or {}))