linux: 4.19.172 -> 4.19.173

This commit is contained in:
Tim Steinbach 2021-02-04 10:40:40 -05:00 committed by Tim Steinbach
parent 165ca30ecf
commit da98a8c94b

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.19.172";
version = "4.19.173";
# 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/v4.x/linux-${version}.tar.xz";
sha256 = "08hl7vw5r61gnzagnm8nbhlbm0h226crp4m19zh0qr2q0pmwqd2g";
sha256 = "0pqr8k0kfnaklb31y29xvqdmgn0pak4qd9pl77lsh6pkwqvd5zfj";
};
} // (args.argsOverride or {}))