diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-09-21T17·14+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-09-21T17·14+0000 |
commit | 607a2f01e6e171ab31c31aef3220dc69736309c7 (patch) | |
tree | c2306d84749683ae6e62e455895047dc0bbb7d75 /scripts | |
parent | 95304172a581a1052a3b6bcda2ef1a8531f88949 (diff) |
* Remove other uses of IPC::Open2.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/nix-push.in | 28 |
1 files changed, 8 insertions, 20 deletions
diff --git a/scripts/nix-push.in b/scripts/nix-push.in index c087b3e372a9..800424c89608 100644 --- a/scripts/nix-push.in +++ b/scripts/nix-push.in @@ -1,7 +1,6 @@ #! @perl@ -w -I@libexecdir@/nix use strict; -use IPC::Open2; use POSIX qw(tmpnam); use readmanifest; @@ -62,20 +61,17 @@ foreach my $path (@ARGV) { # Get all paths referenced by the normalisation of the given # Nix expression. - my $pid = open2(\*READ, \*WRITE, + my $pid = open(READ, "$binDir/nix-store --query --requisites --force-realise " . - "--include-outputs '$path'") or die; - close WRITE; + "--include-outputs '$path'|") or die; while (<READ>) { chomp; die "bad: $_" unless /^\//; $storePaths{$_} = ""; } - close READ; - - waitpid $pid, 0; - $? == 0 or die "nix-store failed"; + + close READ or die "nix-store failed: $?"; } my @storePaths = keys %storePaths; @@ -104,18 +100,14 @@ close NIX; # Instantiate store expressions from the Nix expression. my @storeExprs; print STDERR "instantiating store expressions...\n"; -my $pid = open2(\*READ, \*WRITE, "$binDir/nix-instantiate $nixfile") +my $pid = open(READ, "$binDir/nix-instantiate $nixfile|") or die "cannot run nix-instantiate"; -close WRITE; while (<READ>) { chomp; die unless /^\//; push @storeExprs, $_; } -close READ; - -waitpid $pid, 0; -$? == 0 or die "nix-instantiate failed"; +close READ or die "nix-instantiate failed: $?"; # Realise the store expressions. @@ -130,18 +122,14 @@ while (scalar @tmp > 0) { my @tmp2 = @tmp[0..$n - 1]; @tmp = @tmp[$n..scalar @tmp - 1]; - my $pid = open2(\*READ, \*WRITE, "$binDir/nix-store --realise @tmp2") + my $pid = open(READ, "$binDir/nix-store --realise @tmp2|") or die "cannot run nix-store"; - close WRITE; while (<READ>) { chomp; die unless (/^\//); push @narPaths, "$_"; } - close READ; - - waitpid $pid, 0; - $? == 0 or die "nix-store failed"; + close READ or die "nix-store failed: $?"; } |