1{ stdenv, buildPackages, hostPlatform, fetchFromGitHub, perl, buildLinux, libelf, utillinux, ... } @ args:
2
3buildLinux (args // rec {
4 version = "4.16-rc2";
5 modDirVersion = "4.16.0-rc2";
6 extraMeta.branch = "4.16";
7
8 src = fetchFromGitHub {
9 owner = "shlevy";
10 repo ="riscv-linux";
11 rev = "f0c42cff9292c0a8e6ca702a54aafa04b35758a6";
12 sha256 = "050mdciyz1595z81zsss0v9vqsaysppyzqaqpfs5figackifv3iv";
13 };
14
15 # Should the testing kernels ever be built on Hydra?
16 extraMeta.hydraPlatforms = [];
17
18} // (args.argsOverride or {}))