linux: 5.11 -> 5.11.1

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

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.11";
version = "5.11.1";
# 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 = "1d37w0zvmf8c1l99xvy1hy6p55icjhmbsv7f0amxy2nly1a7pw04";
sha256 = "1gmrckvl3039z80rr740c0d5knwgj6p1dmhw4x9gwc7rxli6az85";
};
} // (args.argsOverride or {}))