2003-07-10 13:41:28 +00:00
|
|
|
#! /usr/bin/perl -w
|
|
|
|
|
2003-08-15 10:13:41 +00:00
|
|
|
use strict;
|
2003-08-15 09:39:33 +00:00
|
|
|
use IPC::Open2;
|
2003-10-16 16:29:57 +00:00
|
|
|
use POSIX qw(tmpnam);
|
2003-08-15 09:39:33 +00:00
|
|
|
|
2003-10-16 16:29:57 +00:00
|
|
|
my $tmpdir;
|
|
|
|
do { $tmpdir = tmpnam(); }
|
|
|
|
until mkdir $tmpdir, 0777;
|
|
|
|
|
|
|
|
my $manifest = "$tmpdir/manifest";
|
2003-07-13 18:58:03 +00:00
|
|
|
my $conffile = "@sysconfdir@/nix/prebuilts.conf";
|
2003-07-10 15:11:48 +00:00
|
|
|
|
2003-10-16 16:29:57 +00:00
|
|
|
#END { unlink $manifest; rmdir $tmpdir; }
|
|
|
|
|
|
|
|
my @srcpaths;
|
2003-07-10 15:24:50 +00:00
|
|
|
my @subs;
|
2003-07-10 20:13:32 +00:00
|
|
|
my @sucs;
|
2003-07-10 15:24:50 +00:00
|
|
|
|
2003-08-15 09:39:33 +00:00
|
|
|
my $fullexpr = "[";
|
2003-08-05 11:14:24 +00:00
|
|
|
|
2003-07-10 15:11:48 +00:00
|
|
|
|
2003-11-24 11:11:40 +00:00
|
|
|
sub processURL {
|
|
|
|
my $url = shift;
|
|
|
|
$url =~ s/\/$//;
|
|
|
|
print "obtaining list of Nix archives at $url...\n";
|
2003-07-10 15:11:48 +00:00
|
|
|
|
2003-11-24 11:11:40 +00:00
|
|
|
system "wget --cache=off '$url'/MANIFEST -O '$manifest' 2> /dev/null"; # !!! escape
|
|
|
|
if ($?) { die "`wget' failed"; }
|
2003-07-10 19:27:46 +00:00
|
|
|
|
2003-11-24 11:11:40 +00:00
|
|
|
open MANIFEST, "<$manifest";
|
|
|
|
|
|
|
|
my $inside = 0;
|
|
|
|
|
|
|
|
my $storepath;
|
|
|
|
my $narname;
|
|
|
|
my $hash;
|
|
|
|
my @preds;
|
|
|
|
|
|
|
|
while (<MANIFEST>) {
|
|
|
|
chomp;
|
|
|
|
s/\#.*$//g;
|
|
|
|
next if (/^$/);
|
|
|
|
|
|
|
|
if (!$inside) {
|
|
|
|
if (/^\{$/) {
|
|
|
|
$inside = 1;
|
|
|
|
undef $storepath;
|
|
|
|
undef $narname;
|
|
|
|
undef $hash;
|
|
|
|
@preds = ();
|
2003-11-24 08:20:49 +00:00
|
|
|
}
|
2003-11-24 11:11:40 +00:00
|
|
|
else { die "bad line: $_"; }
|
|
|
|
} else {
|
|
|
|
if (/^\}$/) {
|
|
|
|
$inside = 0;
|
|
|
|
my $fullurl = "$url/$narname";
|
|
|
|
# print "$storepath\n";
|
|
|
|
|
|
|
|
# Construct a Nix expression that fetches and unpacks a
|
|
|
|
# Nix archive from the network.
|
|
|
|
my $fetch =
|
|
|
|
"(import @datadir@/nix/corepkgs/fetchurl) " .
|
|
|
|
"{url = $fullurl; md5 = \"$hash\"; system = \"@host@\"}";
|
|
|
|
my $nixexpr =
|
|
|
|
"((import @datadir@/nix/corepkgs/nar/unnar.nix) " .
|
|
|
|
"{narFile = ($fetch); outPath = \"$storepath\"; system = \"@host@\"}) ";
|
|
|
|
$fullexpr .= $nixexpr; # !!! O(n^2)?
|
|
|
|
|
|
|
|
push @srcpaths, $storepath;
|
|
|
|
|
|
|
|
foreach my $p (@preds) {
|
|
|
|
push @sucs, $p;
|
|
|
|
push @sucs, $storepath;
|
2003-11-24 08:20:49 +00:00
|
|
|
}
|
2003-11-24 11:11:40 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
elsif (/^\s*StorePath:\s*(\/\S+)\s*$/) {
|
|
|
|
$storepath = $1;
|
|
|
|
}
|
|
|
|
elsif (/^\s*NarName:\s*(\S+)\s*$/) {
|
|
|
|
$narname = $1;
|
2003-11-24 08:20:49 +00:00
|
|
|
}
|
2003-11-24 11:11:40 +00:00
|
|
|
elsif (/^\s*MD5:\s*(\S+)\s*$/) {
|
|
|
|
$hash = $1;
|
|
|
|
}
|
|
|
|
elsif (/^\s*SuccOf:\s*(\/\S+)\s*$/) {
|
|
|
|
push @preds, $1;
|
2003-11-24 08:20:49 +00:00
|
|
|
}
|
2003-11-24 11:11:40 +00:00
|
|
|
else { die "bad line: $_"; }
|
2003-07-10 19:27:46 +00:00
|
|
|
}
|
2003-07-10 15:11:48 +00:00
|
|
|
}
|
|
|
|
|
2003-11-24 11:11:40 +00:00
|
|
|
close MANIFEST;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Obtain URLs either from the command line or from a configuration file.
|
|
|
|
if (scalar @ARGV > 0) {
|
|
|
|
while (@ARGV) {
|
|
|
|
my $url = shift @ARGV;
|
|
|
|
processURL $url;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
open CONFFILE, "<$conffile";
|
|
|
|
while (<CONFFILE>) {
|
|
|
|
chomp;
|
|
|
|
if (/^\s*(\S+)\s*(\#.*)?$/) {
|
|
|
|
my $url = $1;
|
|
|
|
processURL $url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close CONFFILE;
|
2003-07-10 15:11:48 +00:00
|
|
|
}
|
2003-07-10 15:24:50 +00:00
|
|
|
|
2003-08-15 09:39:33 +00:00
|
|
|
$fullexpr .= "]";
|
2003-08-05 11:14:24 +00:00
|
|
|
|
2003-10-16 16:29:57 +00:00
|
|
|
|
2003-11-24 09:25:08 +00:00
|
|
|
# Instantiate store expressions from the Nix expressions we created above.
|
|
|
|
print STDERR "instantiating Nix expression...\n";
|
|
|
|
my $pid = open2(\*READ, \*WRITE, "nix-instantiate -") or die "cannot run nix-instantiate";
|
2003-08-15 09:39:33 +00:00
|
|
|
|
|
|
|
print WRITE $fullexpr;
|
|
|
|
close WRITE;
|
2003-08-05 11:14:24 +00:00
|
|
|
my $i = 0;
|
2003-08-15 09:39:33 +00:00
|
|
|
while (<READ>) {
|
2003-08-05 11:14:24 +00:00
|
|
|
chomp;
|
2003-10-16 16:29:57 +00:00
|
|
|
die unless /^\//;
|
|
|
|
my $subpath = $_;
|
|
|
|
die unless ($i < scalar @srcpaths);
|
|
|
|
my $srcpath = $srcpaths[$i++];
|
|
|
|
push @subs, $srcpath;
|
|
|
|
push @subs, $subpath;
|
2003-08-05 11:14:24 +00:00
|
|
|
}
|
|
|
|
|
2003-08-15 09:39:33 +00:00
|
|
|
waitpid $pid, 0;
|
2003-11-24 09:25:08 +00:00
|
|
|
$? == 0 or die "nix-instantiate failed";
|
2003-08-15 09:39:33 +00:00
|
|
|
|
2003-10-16 16:29:57 +00:00
|
|
|
|
2003-08-05 11:14:24 +00:00
|
|
|
# Register all substitutes.
|
|
|
|
print STDERR "registering substitutes...\n";
|
2003-11-24 09:25:08 +00:00
|
|
|
system "nix-store --substitute @subs";
|
|
|
|
if ($?) { die "`nix-store --substitute' failed"; }
|
2003-07-10 20:13:32 +00:00
|
|
|
|
2003-10-16 16:29:57 +00:00
|
|
|
|
2003-08-05 11:14:24 +00:00
|
|
|
# Register all successors.
|
|
|
|
print STDERR "registering successors...\n";
|
2003-11-24 09:25:08 +00:00
|
|
|
system "nix-store --successor @sucs";
|
|
|
|
if ($?) { die "`nix-store --successor' failed"; }
|