5c83aed32d
Built successfully on x86_64-linux. I've verified the contents of the tarball by comparing its contents against the tag of my local checkout. Furthermore, I've checked the GPG signature of the tag. Signed-off-by: aszlig <aszlig@nix.build>
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-rc4";
|
|
modDirVersion = "4.15.0-rc4";
|
|
extraMeta.branch = "4.15";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
|
sha256 = "13mz21pdqk17hrwga9246cj9bkcz3xmmg0cb4mrbsrb1nv4niv0k";
|
|
};
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
} // (args.argsOverride or {}))
|