57 lines
2.2 KiB
Nix
57 lines
2.2 KiB
Nix
|
# This file turns the pkgs/by-name directory (see its README.md for more info)
|
||
|
# into an overlay that adds all the defined packages.
|
||
|
#
|
||
|
# No validity checks are done here, instead this file is optimised for
|
||
|
# performance, and validity checks are done by CI on PRs.
|
||
|
#
|
||
|
# This file is based on Nixpkgs' `pkgs/top-level/by-name-overlay.nix` in order
|
||
|
# to utilise the same infrastructure and layout, with some adjustments to fit
|
||
|
# our derivative project.
|
||
|
|
||
|
{ lib
|
||
|
, pkgs
|
||
|
}:
|
||
|
|
||
|
# Type: Path -> Overlay
|
||
|
baseDirectory:
|
||
|
let
|
||
|
inherit (builtins)
|
||
|
readDir
|
||
|
;
|
||
|
|
||
|
inherit (lib.attrsets)
|
||
|
mapAttrs
|
||
|
mapAttrsToList
|
||
|
mergeAttrsList
|
||
|
;
|
||
|
|
||
|
# Package files for a single shard
|
||
|
# Type: String -> String -> AttrsOf Path
|
||
|
namesForShard = shard: type:
|
||
|
if type != "directory" then
|
||
|
# Ignore all non-directories. Technically only README.md is allowed as a file in the base directory, so we could alternatively:
|
||
|
# - Assume that README.md is the only file and change the condition to `shard == "README.md"` for a minor performance improvement.
|
||
|
# This would however cause very poor error messages if there's other files.
|
||
|
# - Ensure that README.md is the only file, throwing a better error message if that's not the case.
|
||
|
# 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.
|
||
|
# Additionally in either of those alternatives, we would have to duplicate the hardcoding of "README.md"
|
||
|
{ }
|
||
|
else
|
||
|
mapAttrs
|
||
|
(name: _: baseDirectory + "/${shard}/${name}/package.nix")
|
||
|
(readDir (baseDirectory + "/${shard}"));
|
||
|
|
||
|
# The attribute set mapping names to the package files defining them
|
||
|
# This is defined up here in order to allow reuse of the value (it's kind of expensive to compute)
|
||
|
# if the overlay has to be applied multiple times
|
||
|
packageFiles = mergeAttrsList (mapAttrsToList namesForShard (readDir baseDirectory));
|
||
|
in
|
||
|
# TODO: Consider optimising this using `builtins.deepSeq packageFiles`,
|
||
|
# which could free up the above thunks and reduce GC times.
|
||
|
# Currently this would be hard to measure until we have more packages
|
||
|
# and ideally https://github.com/NixOS/nix/pull/8895
|
||
|
_self: _super:
|
||
|
mapAttrs
|
||
|
(_name: file: pkgs.callPackage file { })
|
||
|
packageFiles
|