8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
15 lines
438 B
Nix
15 lines
438 B
Nix
{ 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;
|
|
PATH = "${coreutils}/bin:${python3}/bin";
|
|
builder = builtins.toFile "builder"
|
|
''
|
|
. .attrs.sh
|
|
python3 ${./closure-graph.py} .attrs.json graph > ''${outputs[out]}
|
|
'';
|
|
}
|
|
""
|