core/pkgs/pkgs-lib/default.nix

10 lines
417 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
# pkgs-lib is for functions and values that can't be in lib because
# they depend on some packages. This notably is *not* for supporting package
# building, instead pkgs/build-support is the place for that.
2024-06-30 08:16:52 +00:00
{ lib, pkgs }:
{
2024-05-02 00:46:19 +00:00
# setting format types and generators. These do not fit in lib/types.nix,
# because they depend on pkgs for rendering some formats
2024-06-30 08:16:52 +00:00
formats = import ./formats.nix { inherit lib pkgs; };
2024-05-02 00:46:19 +00:00
}