#! @perl@ -w my $binDir = $ENV{"NIX_BIN_DIR"}; $binDir = "@bindir@" unless defined $binDir; if (scalar @ARGV < 1) { print STDERR <) { chomp; die "bad: $_" unless /^\//; if (!defined $storePathsSeen{$_}) { push @allStorePaths, $_; $storePathsSeen{$_} = 1; } } close READ or die "nix-store failed: $?"; } # Ask the remote host which paths are invalid. open(READ, "ssh @sshOpts $sshHost nix-store --check-validity --print-invalid @allStorePaths|"); my @missing = (); while () { chomp; print STDERR "target machine needs $_\n"; push @missing, $_; } close READ or die; # Export the store paths and import them on the remote machine. if (scalar @missing > 0) { my $extraOpts = ""; $extraOpts .= "--sign" if $sign == 1; system("nix-store --export $extraOpts @missing | $compressor | ssh @sshOpts $sshHost '$decompressor | nix-store --import'") == 0 or die "copying store paths to remote machine `$sshHost' failed: $?"; } } else { # Copy FROM the remote machine. # Query the closure of the given store paths on the remote # machine. Paths are assumed to be store paths; there is no # resolution (following of symlinks). my $pid = open(READ, "ssh @sshOpts $sshHost nix-store --query --requisites @storePaths|") or die; my @allStorePaths; my %storePathsSeen; while () { chomp; die "bad: $_" unless /^\//; if (!defined $storePathsSeen{$_}) { push @allStorePaths, $_; $storePathsSeen{$_} = 1; print "GOT $_\n"; } } close READ or die "nix-store on remote machine `$sshHost' failed: $?"; # What paths are already valid locally? open(READ, "@bindir@/nix-store --check-validity --print-invalid @allStorePaths|"); my @missing = (); while () { chomp; print STDERR "local machine needs $_\n"; push @missing, $_; } close READ or die; # Export the store paths on the remote machine and import them on locally. if (scalar @missing > 0) { my $extraOpts = ""; $extraOpts .= "--sign" if $sign == 1; system("ssh @sshOpts $sshHost 'nix-store --export $extraOpts @missing | $compressor' | $decompressor | @bindir@/nix-store --import") == 0 or die "copying store paths to remote machine `$sshHost' failed: $?"; } }