1# pkgs-lib is for functions and values that can't be in lib because
2# they depend on some packages. This notably is *not* for supporting package
3# building, instead pkgs/build-support is the place for that.
4{ lib, pkgs }:
5{
6 # setting format types and generators. These do not fit in lib/types.nix,
7 # because they depend on pkgs for rendering some formats
8 formats = import ./formats.nix {
9 inherit lib pkgs;
10 };
11}