forked from mirrors/nixpkgs
e8fcced76e
Closes #32137
17 lines
494 B
Nix
17 lines
494 B
Nix
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "4.15-rc1";
|
|
modDirVersion = "4.15.0-rc1";
|
|
extraMeta.branch = "4.15";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
|
sha256 = "1l7c132qb5qjd80hga03ivssfq65brqyd95sb4rd065dqrixp20n";
|
|
};
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
} // (args.argsOverride or {}))
|