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