linux: 5.10.16 -> 5.10.17

This commit is contained in:
Tim Steinbach 2021-02-17 09:36:16 -05:00
parent e64ac44062
commit f4174c5201
No known key found for this signature in database
GPG key ID: 1B40229F19262402

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.10.16";
version = "5.10.17";
# 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 = "0dqa40yd1yf488pd5vv8c30wsnqazykv7lvi6lmwgz1v4zmf6vsk";
sha256 = "05289lr531piv1ncisbazfk0lj0q7gxflqkb0bn4c95vx0y64kp8";
};
} // (args.argsOverride or {}))