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

17 lines
499 B
Nix
Raw Normal View History

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