linux: 4.16.2 -> 4.16.3

This commit is contained in:
Tim Steinbach 2018-04-19 12:17:30 -04:00
parent 69353cdf57
commit f99c283f50
No known key found for this signature in database
GPG Key ID: 472BFCCA96BD0EDA

View File

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.16.2";
version = "4.16.3";
# 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 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "157q43px707nizqwzi5nk87c0nvdif9fbi751f71wpgfp3iiy2s7";
sha256 = "18w1dhq5dnmcqc3d8imwm90zwfw0fhda7sy5fjwkhzm93nl72s8d";
};
} // (args.argsOverride or {}))