3
0
Fork 0
forked from mirrors/nixpkgs

linux: 5.10.17 -> 5.10.18

This commit is contained in:
Tim Steinbach 2021-02-23 10:46:01 -05:00 committed by Tim Steinbach
parent a171fe92b1
commit fbf00de576

View file

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