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-23 23:56:43 +00:00
version = "4.19-rc5";
modDirVersion = "4.19.0-rc5";
2018-08-27 01:50:19 +00:00
extraMeta.branch = "4.19";
src = fetchurl {
2017-05-15 02:03:14 +00:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-09-23 23:56:43 +00:00
sha256 = "0fpv2g6x1hgdrxvh1acjcxmyk2fzqcx1ypi0mqw72swbm587irck";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))