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

17 lines
485 B
Nix
Raw Normal View History

{ stdenv, buildPackages, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
buildLinux (args // rec {
2018-09-10 11:40:41 -04:00
version = "4.19-rc3";
modDirVersion = "4.19.0-rc3";
2018-08-26 21:50:19 -04:00
extraMeta.branch = "4.19";
src = fetchurl {
2017-05-14 22:03:14 -04:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-09-10 11:40:41 -04:00
sha256 = "0n372r1j3m2q47hwl8b1r57jq1b4fdhmadgvcvik6fpsvcw74w27";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))