linux: 6.1 -> 6.1.1

This commit is contained in:
Maximilian Bosch 2022-12-23 08:14:44 +01:00
parent f6f17ce513
commit 69bbfa18e4
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "6.1";
version = "6.1.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/v6.x/linux-${version}.tar.xz";
sha256 = "sha256-LKHxcFGkMPb+0RluSVJxdQcXGs/ZfZZXchJQJwOyXes=";
sha256 = "1yqxjz0f722s2bcssqg5b6m6lvq5l4vrlh3bjviajda4rxvi7rm3";
};
} // (args.argsOverride or { }))