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

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

19 lines
653 B
Nix
Raw Normal View History

2022-10-03 08:15:49 +00:00
{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
with lib;
buildLinux (args // rec {
2022-11-16 21:42:54 +00:00
version = "6.0.9";
2022-10-03 08:15:49 +00:00
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
# branchVersion needs to be x.y
extraMeta.branch = versions.majorMinor version;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
2022-11-16 21:42:54 +00:00
sha256 = "1irip1yk62carcisxlacwcxsiqib4qswx6h5mfhv8f97x04a4531";
2022-10-03 08:15:49 +00:00
};
} // (args.argsOverride or { }))