nixpkgs/pkgs/os-specific/linux/kernel/linux-testing.nix

17 lines
499 B
Nix
Raw Normal View History

2017-10-28 15:09:54 -04:00
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
buildLinux (args // rec {
2018-04-29 22:29:10 -04:00
version = "4.17-rc3";
modDirVersion = "4.17.0-rc3";
2018-04-17 20:28:11 -04:00
extraMeta.branch = "4.17";
src = fetchurl {
2017-05-14 22:03:14 -04:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-04-29 22:29:10 -04:00
sha256 = "1divgjzmpl98b5j416vhkq53li0y9v5vvdwbgwpr2xznspzbkygq";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))