eaf98f92db
This checks that creating module docs for search.nixos.org succceeds. Errors can happen when complex `default` values can't be evaluated or on malformed Docbook XML in descriptions.
10 lines
277 B
Nix
10 lines
277 B
Nix
# This flake just mirrors input `nixos-search`.
|
|
# Because `nixos-search` is a dev-only dependency, we don't add
|
|
# it to the main flake.
|
|
{
|
|
inputs.nixos-search.url = "github:nixos/nixos-search";
|
|
outputs = { self, nixos-search }: {
|
|
inherit (nixos-search) packages;
|
|
};
|
|
}
|