linux: 5.14.17 -> 5.14.18

This commit is contained in:
TredwellGit 2021-11-12 19:02:36 +00:00
parent 6caad489e2
commit 43ebf91176

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.14.17";
version = "5.14.18";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "0q7df51yk6di1m8ky0gplkyx6smlr9inxrd569qv3ww3ykg933sd";
sha256 = "1pr7qh2wjw7h6r3fixg9ia5r3na7vdb6b4sp9wnbifnqckahzwis";
};
} // (args.argsOverride or { }))