2019-03-04 07:35:03 -05:00
|
|
|
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
|
|
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
|
|
buildLinux (args // rec {
|
2019-04-06 12:54:45 -04:00
|
|
|
version = "5.0.7";
|
2019-03-04 07:35:03 -05:00
|
|
|
|
|
|
|
|
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
|
2019-04-07 08:34:12 -04:00
|
|
|
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
|
2019-03-04 07:35:03 -05:00
|
|
|
|
|
|
|
|
# branchVersion needs to be x.y
|
|
|
|
|
extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version)));
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
|
2019-04-06 12:54:45 -04:00
|
|
|
sha256 = "1v2lxwamnfm879a9qi9fwp5zyvlzjw9qa0aizidjbiwz5dk7gq8n";
|
2019-03-04 07:35:03 -05:00
|
|
|
};
|
|
|
|
|
} // (args.argsOverride or {}))
|