linux: 4.14.53 -> 4.14.54

This commit is contained in:
Tim Steinbach 2018-07-08 15:15:45 -04:00
parent b49bec3ba0
commit 9c2389a712
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.14.53";
version = "4.14.54";
# 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 = "1gqbm26j7sayl854mlfjmwjvjh3gis2w1l2rl7s53ibxz5r2apx8";
sha256 = "1imnqkhybb804ibgbpbhz16x9mk1q2qq7yzif88ajff552n445j5";
};
} // (args.argsOverride or {}))