mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
f01573b6ee
Problem: `nix-build doc` gives a bunch of warnings because it inspects `lib` to figure out where all the symbols are. Solution: Move the step of figuring out where the symbols are to a Nix evaluation inside a derivation instead.
74 lines
2.1 KiB
Nix
74 lines
2.1 KiB
Nix
{ nixpkgsPath, revision, libsetsJSON }:
|
|
let
|
|
lib = import (nixpkgsPath + "/lib");
|
|
libsets = builtins.fromJSON libsetsJSON;
|
|
|
|
libDefPos = prefix: set:
|
|
builtins.concatMap
|
|
(name: [{
|
|
name = builtins.concatStringsSep "." (prefix ++ [name]);
|
|
location = builtins.unsafeGetAttrPos name set;
|
|
}] ++ lib.optionals
|
|
(builtins.length prefix == 0 && builtins.isAttrs set.${name})
|
|
(libDefPos (prefix ++ [name]) set.${name})
|
|
) (builtins.attrNames set);
|
|
|
|
libset = toplib:
|
|
builtins.map
|
|
(subsetname: {
|
|
subsetname = subsetname;
|
|
functions = libDefPos [] toplib.${subsetname};
|
|
})
|
|
(builtins.map (x: x.name) libsets);
|
|
|
|
flattenedLibSubset = { subsetname, functions }:
|
|
builtins.map
|
|
(fn: {
|
|
name = "lib.${subsetname}.${fn.name}";
|
|
value = fn.location;
|
|
})
|
|
functions;
|
|
|
|
locatedlibsets = libs: builtins.map flattenedLibSubset (libset libs);
|
|
removeFilenamePrefix = prefix: filename:
|
|
let
|
|
prefixLen = (builtins.stringLength prefix) + 1; # +1 to remove the leading /
|
|
filenameLen = builtins.stringLength filename;
|
|
substr = builtins.substring prefixLen filenameLen filename;
|
|
in substr;
|
|
|
|
removeNixpkgs = removeFilenamePrefix (builtins.toString nixpkgsPath);
|
|
|
|
liblocations =
|
|
builtins.filter
|
|
(elem: elem.value != null)
|
|
(lib.lists.flatten
|
|
(locatedlibsets lib));
|
|
|
|
fnLocationRelative = { name, value }:
|
|
{
|
|
inherit name;
|
|
value = value // { file = removeNixpkgs value.file; };
|
|
};
|
|
|
|
relativeLocs = (builtins.map fnLocationRelative liblocations);
|
|
sanitizeId = builtins.replaceStrings
|
|
[ "'" ]
|
|
[ "-prime" ];
|
|
|
|
urlPrefix = "https://github.com/NixOS/nixpkgs/blob/${revision}";
|
|
jsonLocs = builtins.listToAttrs
|
|
(builtins.map
|
|
({ name, value }: {
|
|
name = sanitizeId name;
|
|
value =
|
|
let
|
|
text = "${value.file}:${builtins.toString value.line}";
|
|
target = "${urlPrefix}/${value.file}#L${builtins.toString value.line}";
|
|
in
|
|
"[${text}](${target}) in `<nixpkgs>`";
|
|
})
|
|
relativeLocs);
|
|
|
|
in
|
|
jsonLocs
|