Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/doc-support/lib-function-docs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ with pkgs; stdenv.mkDerivation {
docgen lists 'List manipulation functions'
docgen debug 'Debugging functions'
docgen options 'NixOS / nixpkgs option handling'
docgen path 'Path functions'
docgen filesystem 'Filesystem functions'
docgen sources 'Source filtering functions'
'';
Expand Down
2 changes: 2 additions & 0 deletions doc/functions/library.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

<xi:include href="./library/generated/options.xml" />

<xi:include href="./library/generated/path.xml" />

<xi:include href="./library/generated/filesystem.xml" />

<xi:include href="./library/generated/sources.xml" />
Expand Down
3 changes: 2 additions & 1 deletion lib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ let
maintainers = import ../maintainers/maintainer-list.nix;
teams = callLibs ../maintainers/team-list.nix;
meta = callLibs ./meta.nix;
sources = callLibs ./sources.nix;
versions = callLibs ./versions.nix;

# module system
Expand All @@ -53,7 +52,9 @@ let
fetchers = callLibs ./fetchers.nix;

# Eval-time filesystem handling
path = callLibs ./path.nix;
filesystem = callLibs ./filesystem.nix;
sources = callLibs ./sources.nix;

# back-compat aliases
platforms = self.systems.doubles;
Expand Down
Loading