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

19 lines
641 B
Nix
Raw Normal View History

2021-02-15 12:49:07 +01:00
{ lib, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
with lib;
buildLinux (args // rec {
2021-03-12 04:08:03 +01:00
version = "5.11.6";
2021-02-15 12:49:07 +01: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/v5.x/linux-${version}.tar.xz";
2021-03-12 04:08:03 +01:00
sha256 = "02dcq7cqll5c39z8dh9f0xy68hh4a8jsab5k4n9calfldrm7jw79";
2021-02-15 12:49:07 +01:00
};
} // (args.argsOverride or {}))