linux: 4.16.11 -> 4.16.12

This commit is contained in:
Tim Steinbach 2018-05-26 12:45:37 -04:00
parent b4e2fb578e
commit ae995625d8
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.11";
version = "4.16.12";
# 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 = "088931hgi5acm8nz19nd09skmamr3hhfb958374j30br6f94pfkd";
sha256 = "078if7mmlq4csv0d7x7rpsc8zs7m6rpz75h6878r0d2silsphw2n";
};
} // (args.argsOverride or {}))