about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2018-11-10 16:09:50 -0500
committerTim Steinbach <tim@nequissimus.com>2018-11-10 16:12:38 -0500
commit318393ec66711c2ec90d53ea0f45373474fbfe80 (patch)
tree9a923cd246a6b9b473725f023e4e376f56d582c8 /pkgs/os-specific
parent39a9e2d65fad557b33b86856f86503cb0496bda8 (diff)
downloadnixlib-318393ec66711c2ec90d53ea0f45373474fbfe80.tar
nixlib-318393ec66711c2ec90d53ea0f45373474fbfe80.tar.gz
nixlib-318393ec66711c2ec90d53ea0f45373474fbfe80.tar.bz2
nixlib-318393ec66711c2ec90d53ea0f45373474fbfe80.tar.lz
nixlib-318393ec66711c2ec90d53ea0f45373474fbfe80.tar.xz
nixlib-318393ec66711c2ec90d53ea0f45373474fbfe80.tar.zst
nixlib-318393ec66711c2ec90d53ea0f45373474fbfe80.zip
linux: 4.18.17 -> 4.18.18
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.18.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.18.nix b/pkgs/os-specific/linux/kernel/linux-4.18.nix
index add98cfb2faa..7859a32aeaf4 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.18.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.18.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.18.17";
+  version = "4.18.18";
 
   # 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 = "0353ns09i5y0fcygvly20z0qrp6gcqd453186ihm4r7ajgh43bz2";
+    sha256 = "0g83i1ai0z0gpjw1rm8a8wdipjjxhfdvp798nrl14l5d2pw63crl";
   };
 } // (args.argsOverride or {}))