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-05-20 16:20:37 +01:00
version = "5.2-rc1";
modDirVersion = "5.2.0-rc1";
extraMeta.branch = "5.2";
src = fetchurl {
2017-05-15 03:03:14 +01:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2019-05-20 16:20:37 +01:00
sha256 = "169gjmciijgmwwfyz3n7pvf2x18pmfvgdk73s8jlx30ggwzgac1l";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))