Skip to content

Commit

Permalink
doc/lib-functions: print libset name before description
Browse files Browse the repository at this point in the history
  • Loading branch information
ncfavier committed Dec 22, 2022
1 parent ce95228 commit 5782c3d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
20 changes: 10 additions & 10 deletions doc/doc-support/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ let
inherit (lib) hasPrefix removePrefix;

libsets = [
{ name = "asserts"; description = "Assert functions"; }
{ name = "attrsets"; description = "Attribute-set functions"; }
{ name = "strings"; description = "String manipulation functions"; }
{ name = "versions"; description = "Version string functions"; }
{ name = "trivial"; description = "Miscellaneous functions"; }
{ name = "lists"; description = "List manipulation functions"; }
{ name = "debug"; description = "Debugging functions"; }
{ name = "asserts"; description = "assertion functions"; }
{ name = "attrsets"; description = "attribute set functions"; }
{ name = "strings"; description = "string manipulation functions"; }
{ name = "versions"; description = "version string functions"; }
{ name = "trivial"; description = "miscellaneous functions"; }
{ name = "lists"; description = "list manipulation functions"; }
{ name = "debug"; description = "debugging functions"; }
{ name = "options"; description = "NixOS / nixpkgs option handling"; }
{ name = "filesystem"; description = "Filesystem functions"; }
{ name = "sources"; description = "Source filtering functions"; }
{ name = "cli"; description = "Command-line serialization functions"; }
{ name = "filesystem"; description = "filesystem functions"; }
{ name = "sources"; description = "source filtering functions"; }
{ name = "cli"; description = "command-line serialization functions"; }
];

locationsXml = import ./lib-function-locations.nix { inherit pkgs nixpkgs libsets; };
Expand Down
3 changes: 2 additions & 1 deletion doc/doc-support/lib-function-docs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ with pkgs; stdenv.mkDerivation {
buildInputs = [ nixdoc ];
installPhase = ''
function docgen {
nixdoc -c "$1" -d "$2" -f "$1.nix" > "$out/$1.xml"
# TODO: wrap lib.$1 in <literal>, make nixdoc not escape it
nixdoc -c "$1" -d "lib.$1: $2" -f "$1.nix" > "$out/$1.xml"
echo "<xi:include href='$1.xml' />" >> "$out/index.xml"
}
Expand Down

0 comments on commit 5782c3d

Please sign in to comment.