ociTools.buildContainer: writeReferencesToFile -> writeClosure

+2 -2
+2 -2
pkgs/build-support/oci-tools/default.nix
··· 1 - { lib, writeText, runCommand, writeReferencesToFile }: 1 + { lib, writeText, runCommand, writeClosure }: 2 2 3 3 { 4 4 buildContainer = ··· 72 72 set -o pipefail 73 73 mkdir -p $out/rootfs/{dev,proc,sys} 74 74 cp ${config} $out/config.json 75 - xargs tar c < ${writeReferencesToFile args} | tar -xC $out/rootfs/ 75 + xargs tar c < ${writeClosure args} | tar -xC $out/rootfs/ 76 76 ''; 77 77 } 78 78