biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / top-level / by-name-overlay.nix
blob3df9843d03df897eb14191e93de5515f4307217e
1 # This file turns the pkgs/by-name directory (see its README.md for more info) into an overlay that adds all the defined packages.
2 # No validity checks are done here,
3 # instead this file is optimised for performance,
4 # and validity checks are done by CI on PRs.
6 # Type: Path -> Overlay
7 baseDirectory:
8 let
9   # Because of Nix's import-value cache, importing lib is free
10   lib = import ../../lib;
12   inherit (builtins)
13     readDir
14     ;
16   inherit (lib.attrsets)
17     mapAttrs
18     mapAttrsToList
19     mergeAttrsList
20     ;
22   # Package files for a single shard
23   # Type: String -> String -> AttrsOf Path
24   namesForShard = shard: type:
25     if type != "directory" then
26       # Ignore all non-directories. Technically only README.md is allowed as a file in the base directory, so we could alternatively:
27       # - Assume that README.md is the only file and change the condition to `shard == "README.md"` for a minor performance improvement.
28       #   This would however cause very poor error messages if there's other files.
29       # - Ensure that README.md is the only file, throwing a better error message if that's not the case.
30       #   However this would make for a poor code architecture, because one type of error would have to be duplicated in the validity checks and here.
31       # Additionally in either of those alternatives, we would have to duplicate the hardcoding of "README.md"
32       { }
33     else
34       mapAttrs
35         (name: _: baseDirectory + "/${shard}/${name}/package.nix")
36         (readDir (baseDirectory + "/${shard}"));
38   # The attribute set mapping names to the package files defining them
39   # This is defined up here in order to allow reuse of the value (it's kind of expensive to compute)
40   # if the overlay has to be applied multiple times
41   packageFiles = mergeAttrsList (mapAttrsToList namesForShard (readDir baseDirectory));
43 # TODO: Consider optimising this using `builtins.deepSeq packageFiles`,
44 # which could free up the above thunks and reduce GC times.
45 # Currently this would be hard to measure until we have more packages
46 # and ideally https://github.com/NixOS/nix/pull/8895
47 self: super:
49   # This attribute is necessary to allow CI to ensure that all packages defined in `pkgs/by-name`
50   # don't have an overriding definition in `all-packages.nix` with an empty (`{ }`) second `callPackage` argument.
51   # It achieves that with an overlay that modifies both `callPackage` and this attribute to signal whether `callPackage` is used
52   # and whether it's defined by this file here or `all-packages.nix`.
53   # TODO: This can be removed once `pkgs/by-name` can handle custom `callPackage` arguments without `all-packages.nix` (or any other way of achieving the same result).
54   # Because at that point the code in ./stage.nix can be changed to not allow definitions in `all-packages.nix` to override ones from `pkgs/by-name` anymore and throw an error if that happens instead.
55   _internalCallByNamePackageFile = file: self.callPackage file { };
57 // mapAttrs
58   (name: self._internalCallByNamePackageFile)
59   packageFiles