blob: f681559411e72e394ddc0d88c0472057c5dd1637 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
runCommand,
python3,
coreutils,
}:
# Write the references of `path' to a file, in order of how "popular" each
# reference is. Nix 2 only.
path:
runCommand "closure-paths"
{
exportReferencesGraph.graph = path;
__structuredAttrs = true;
preferLocalBuild = true;
nativeBuildInputs = [
coreutils
python3
];
}
''
python3 ${./closure-graph.py} "$NIX_ATTRS_JSON_FILE" graph > ''${outputs[out]}
''
|