summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorkraem <ebrin.ronnie@protonmail.com>2020-04-20 01:01:11 +0200
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2020-04-20 10:05:36 -0400
commit8879086cfc78e192f4ca5f3f212dfda264c5381a (patch)
tree0ddc3a566938b014697337926cace643fb1d01ed /pkgs/os-specific
parent4307923b86cb7764a3a6709cebcfdf934e85d5ba (diff)
downloadnixpkgs-8879086cfc78e192f4ca5f3f212dfda264c5381a.tar
nixpkgs-8879086cfc78e192f4ca5f3f212dfda264c5381a.tar.gz
nixpkgs-8879086cfc78e192f4ca5f3f212dfda264c5381a.tar.bz2
nixpkgs-8879086cfc78e192f4ca5f3f212dfda264c5381a.tar.lz
nixpkgs-8879086cfc78e192f4ca5f3f212dfda264c5381a.tar.xz
nixpkgs-8879086cfc78e192f4ca5f3f212dfda264c5381a.tar.zst
nixpkgs-8879086cfc78e192f4ca5f3f212dfda264c5381a.zip
linux: 5.5.17 -> 5.5.18
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.5.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.5.nix b/pkgs/os-specific/linux/kernel/linux-5.5.nix
index c4fbe1aea5e..ecb92b5bfe7 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.5.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.5.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.5.17";
+  version = "5.5.18";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "06aqhlysa7zdj6c69hyii3hfqlfa9751ivga38rbqw1lr2gbbnj0";
+    sha256 = "01iiiq4dsyyc5y6b52wax9as6dzhdi172vd1423sc1yp4rrk8178";
   };
 } // (args.argsOverride or {}))