1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 00:54:11 +00:00
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-10-16 01:35:28 +01:00
version = "4.19-rc8";
modDirVersion = "4.19.0-rc8";
2018-08-27 02:50:19 +01:00
extraMeta.branch = "4.19";
src = fetchurl {
2017-05-15 03:03:14 +01:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-10-16 01:35:28 +01:00
sha256 = "1xw8grzn4i4b2vprfwi4p4003n7rr9725dbiqyrl8w1pm11jwpin";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))