summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-12-18 11:23:39 -0500
committerTim Steinbach <tim@nequissimus.com>2019-12-18 11:23:39 -0500
commit0ea28ae4562a608f40cb0d1d8192c83a9ffc9661 (patch)
treeef35a30087273dd8be7f05a5bad21f3c2980c443 /pkgs/os-specific/linux/kernel
parent819a16497447ec79eec9e66ac23fd9cbdd55005d (diff)
downloadnixpkgs-0ea28ae4562a608f40cb0d1d8192c83a9ffc9661.tar
nixpkgs-0ea28ae4562a608f40cb0d1d8192c83a9ffc9661.tar.gz
nixpkgs-0ea28ae4562a608f40cb0d1d8192c83a9ffc9661.tar.bz2
nixpkgs-0ea28ae4562a608f40cb0d1d8192c83a9ffc9661.tar.lz
nixpkgs-0ea28ae4562a608f40cb0d1d8192c83a9ffc9661.tar.xz
nixpkgs-0ea28ae4562a608f40cb0d1d8192c83a9ffc9661.tar.zst
nixpkgs-0ea28ae4562a608f40cb0d1d8192c83a9ffc9661.zip
linux: 5.3.16 -> 5.3.18
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.3.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.3.nix b/pkgs/os-specific/linux/kernel/linux-5.3.nix
index d384ae67587..d83f0fb9813 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.3.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.3.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.3.16";
+  version = "5.3.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 = "19asdv08rzp33f0zxa2swsfnbhy4zwg06agj7sdnfy4wfkrfwx49";
+    sha256 = "133342nv9ddjad2rizmcbilg9rhg339sfqr9l77j4cgkqhblkw90";
   };
 } // (args.argsOverride or {}))