summary refs log blame commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.10.nix
blob: 2e82728107cbc9e2ef085b388b8e08e62be0051f (plain) (tree)
1
2
3
4
5
6




                                                                                           
                     








                                                                                                                                       
                                                                    

                               
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:

with stdenv.lib;

buildLinux (args // rec {
  version = "5.10.6";

  # 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";
    sha256 = "02v91afra3pcwfws74wxdsm8pfc57vws659b7j6jmsxm3hnd0rvp";
  };
} // (args.argsOverride or {}))