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-09 15:11:28 +01:00
version = "5.11.5";
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-09 15:11:28 +01:00
sha256 = "0srxpl44px1fr7y6nl8pq61vmbkkdbsmxy5k7wvqka33gdhy8212";
2021-02-15 12:49:07 +01:00
};
} // (args.argsOverride or {}))