2018-08-20 20:43:41 +02:00
|
|
|
{ stdenv, buildPackages, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
|
2014-06-05 13:06:19 +02:00
|
|
|
|
2018-01-28 19:50:18 +01:00
|
|
|
buildLinux (args // rec {
|
2019-02-19 03:10:44 +01:00
|
|
|
version = "5.0-rc7";
|
|
|
|
modDirVersion = "5.0.0-rc7";
|
2019-01-07 13:57:32 +01:00
|
|
|
extraMeta.branch = "5.0";
|
2014-06-05 13:06:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-05-15 04:03:14 +02:00
|
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
2019-02-19 03:10:44 +01:00
|
|
|
sha256 = "0x5jvv4n9l1gisc0q9m9r7173d9qwpl6crd59fbmasbmvi9lnp41";
|
2014-06-05 13:06:19 +02:00
|
|
|
};
|
|
|
|
|
2014-06-18 00:23:32 +02:00
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
2014-06-05 13:06:19 +02:00
|
|
|
} // (args.argsOverride or {}))
|