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

21 lines
654 B
Nix
Raw Normal View History

{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
with stdenv.lib;
buildLinux (args // rec {
2019-12-16 16:24:53 +00:00
version = "5.5-rc2";
extraMeta.branch = "5.5";
# modDirVersion needs to be x.y.z, will always add .0
modDirVersion = if (modDirVersionArg == null) then builtins.replaceStrings ["-"] [".0-"] version else modDirVersionArg;
src = fetchurl {
2017-05-15 03:03:14 +01:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2019-12-16 16:24:53 +00:00
sha256 = "1fs432ld5k1j68hflqdxby9mxa6a7xnw1m6z5lfb9341gjw078xc";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))