linux: 4.14.86 -> 4.14.87

(cherry picked from commit 5fa8435719a1ad5b7ac8f57ce3c6e47cebafbdeb)
release-18.03-flake
Tim Steinbach 2018-12-08 10:22:19 -05:00
parent a7d7fa1a0d
commit b551f89e25
No known key found for this signature in database
GPG Key ID: C5629893DE283C96
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.14.86";
version = "4.14.87";
# 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 = "0a3f4rn9aixmx6ssqw0yqcr37js790qvb28v40rpg49b0aln14ns";
sha256 = "09g12a8lkx5xm3c65q6wbzr2asnws956w2d8apj27avxcmylsx1n";
};
} // (args.argsOverride or {}))