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

17 lines
482 B
Nix
Raw Normal View History

{ stdenv, buildPackages, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
buildLinux (args // rec {
2019-06-07 18:57:57 +00:00
version = "5.2-rc3";
modDirVersion = "5.2.0-rc3";
2019-05-20 15:20:37 +00:00
extraMeta.branch = "5.2";
src = fetchurl {
2017-05-15 02:03:14 +00:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2019-06-07 18:57:57 +00:00
sha256 = "1hray0c7lgnsvvgfwff82d2ng03rn3dlljm04sk1w8nlwyphfmj8";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))