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

19 lines
642 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-31 17:58:41 +02:00
version = "5.11.11";
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-31 17:58:41 +02:00
sha256 = "1fc3yl4srzla3cbihgnry0pqmgcc17zv0zlkk9zpx99371hpay0a";
2021-02-15 12:49:07 +01:00
};
} // (args.argsOverride or {}))