1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
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-05-28 19:40:56 +01:00
version = "4.17-rc7";
modDirVersion = "4.17.0-rc7";
2018-04-18 01:28:11 +01:00
extraMeta.branch = "4.17";
src = fetchurl {
2017-05-15 03:03:14 +01:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-05-28 19:40:56 +01:00
sha256 = "0kibvll2h4wvfbfxral7jsjajaijw0jb0scpjascwh66d7cxbbbr";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))