about summary refs log blame commit diff
path: root/tests/export-graph.nix
blob: d65ad8c143cb3f583f7621378e92ee9e2c39f824 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                         
             
      



                                             
                              



                                                                             
                               
                          
                                                                   


                                                                 





                                                                              
 
with import ./config.nix;

rec {

  printRefs =
    ''
      while read path; do
          read drv
          read nrRefs
          echo "$path has $nrRefs references"
          echo "$path" >> $out
          for ((n = 0; n < $nrRefs; n++)); do read ref; echo "ref $ref"; done
      done < refs
    '';

  runtimeGraph = mkDerivation {
    name = "dependencies";
    builder = builtins.toFile "build-graph-builder" "${printRefs}";
    exportReferencesGraph = ["refs" (import ./dependencies.nix)];
  };

  buildGraph = mkDerivation {
    name = "dependencies";
    builder = builtins.toFile "build-graph-builder" "${printRefs}";
    exportBuildReferencesGraph = ["refs" (import ./dependencies.nix).drvPath];
  };

}