linux: 4.19.27 -> 4.19.28

This commit is contained in:
Tim Steinbach 2019-03-10 14:16:02 -04:00
parent db66867b9d
commit 810401284f
No known key found for this signature in database
GPG Key ID: 6C654787275A64F1

View File

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.19.27";
version = "4.19.28";
# 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 = "0ibjd1cq5hp22hk4hj546jf8j6d2pxhxx9440p73lc26gksppd81";
sha256 = "1vhngvj0q83bmmxklq6qyapcvb63dska1zhn7d4ahxihzhgkv1as";
};
} // (args.argsOverride or {}))