linux: 5.14.13 -> 5.14.14

conduit-nginx
TredwellGit 2021-10-20 11:39:55 +00:00
parent a3edfb9ee5
commit a96f1a866a
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.14.13";
version = "5.14.14";
# 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 = "0kcn9g5jyd043f75wk3k34j430callzhw5jh1if9zacqq2s7haw3";
sha256 = "0snh17ah49wmfmazy6x42rhvl484h657y0iq4l09a885sjb4xzsd";
};
} // (args.argsOverride or { }))