2022-10-06 18:32:54 +00:00
|
|
|
{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
buildLinux (args // rec {
|
2022-11-21 17:40:18 +00:00
|
|
|
version = "6.0.9";
|
2022-10-06 18:32:54 +00:00
|
|
|
|
|
|
|
# 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;
|
|
|
|
|
|
|
|
# branchVersion needs to be x.y
|
|
|
|
extraMeta.branch = versions.majorMinor version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
|
2022-11-21 17:40:18 +00:00
|
|
|
sha256 = "1irip1yk62carcisxlacwcxsiqib4qswx6h5mfhv8f97x04a4531";
|
2022-10-06 18:32:54 +00:00
|
|
|
};
|
|
|
|
} // (args.argsOverride or { }))
|