nix-community.nixvim/flake-modules/packages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
384 B
Nix
Raw Normal View History

2024-07-06 00:22:17 +01:00
{ getHelpers, ... }:
{
perSystem =
2024-07-06 00:22:17 +01:00
{ pkgsUnfree, config, ... }:
{
packages = import ../docs {
2024-07-06 00:22:17 +01:00
inherit getHelpers;
# Building the docs evaluates each plugin's default package, some of which are unfree
pkgs = pkgsUnfree;
};
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}