Files
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-09 12:27:53 -04:00
version = "5.2-rc4";
modDirVersion = "5.2.0-rc4";
2019-05-20 11:20:37 -04:00
extraMeta.branch = "5.2";
src = fetchurl {
2017-05-14 22:03:14 -04:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2019-06-09 12:27:53 -04:00
sha256 = "0j5vvmbndmjyal3sd98a9lr0x6lxarbz46rgp197f6sf628gxahq";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))