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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
683 B
Nix
Raw Normal View History

2021-04-07 16:28:15 +00:00
{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
2021-01-15 14:45:37 +00:00
with lib;
buildLinux (args // rec {
2021-10-21 19:27:44 +00:00
version = "5.15-rc6";
extraMeta.branch = lib.versions.majorMinor version;
# 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 02:03:14 +00:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2021-10-21 19:27:44 +00:00
sha256 = "1lp3jqwsbd97k3bx4crs8rc2wssyaf0v8x4kl4zv7g7ww2kkg2ii";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))