ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / build-support / closure-info.nix
blob6b3ff6fd62b05492735f452310f2c5cae245f3fa
1 # This derivation builds two files containing information about the
2 # closure of 'rootPaths': $out/store-paths contains the paths in the
3 # closure, and $out/registration contains a file suitable for use with
4 # "nix-store --load-db" and "nix-store --register-validity
5 # --hash-given".
7 { stdenv, buildPackages }:
9 { rootPaths }:
11 assert builtins.langVersion >= 5;
13 stdenv.mkDerivation {
14   name = "closure-info";
16   __structuredAttrs = true;
18   exportReferencesGraph.closure = rootPaths;
20   preferLocalBuild = true;
22   PATH = "${buildPackages.coreutils}/bin:${buildPackages.jq}/bin";
24   builder = builtins.toFile "builder"
25     ''
26       . .attrs.sh
28       out=''${outputs[out]}
30       mkdir $out
32       jq -r ".closure | map(.narSize) | add" < .attrs.json > $out/total-nar-size
33       jq -r '.closure | map([.path, .narHash, .narSize, "", (.references | length)] + .references) | add | map("\(.)\n") | add' < .attrs.json | head -n -1 > $out/registration
34       jq -r .closure[].path < .attrs.json > $out/store-paths
35     '';