nixpkgs/pkgs/os-specific/linux/kernel/linux-testing.nix

17 lines
494 B
Nix
Raw Normal View History

{ stdenv, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
import ./generic.nix (args // rec {
2018-01-15 11:14:39 +01:00
version = "4.15-rc8";
modDirVersion = "4.15.0-rc8";
extraMeta.branch = "4.15";
src = fetchurl {
2017-05-15 04:03:14 +02:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-01-15 11:14:39 +01:00
sha256 = "15d24b47mfkfs2b0l54sq0yl3ylh5dnx23jknb2r7cq14wxiqmq3";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))