guix/scripts/nix-pull.in

108 lines
3 KiB
Plaintext
Raw Normal View History

2004-03-15 15:23:53 +00:00
#! @perl@ -w -I@libexecdir@/nix
use strict;
2006-10-04 18:58:11 +00:00
use File::Temp qw(tempdir);
use readmanifest;
2003-08-15 09:39:33 +00:00
2006-10-04 18:58:11 +00:00
my $tmpDir = tempdir("nix-pull.XXXXXX", CLEANUP => 1, TMPDIR => 1)
or die "cannot create a temporary directory";
2008-11-20 15:44:59 +00:00
my $binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@";
my $libexecDir = ($ENV{"NIX_LIBEXEC_DIR"} or "@libexecdir@");
my $storeDir = ($ENV{"NIX_STORE_DIR"} or "@storedir@");
my $stateDir = ($ENV{"NIX_STATE_DIR"} or "@localstatedir@/nix");
my $manifestDir = ($ENV{"NIX_MANIFESTS_DIR"} or "$stateDir/manifests");
2003-07-10 15:24:50 +00:00
# Prevent access problems in shared-stored installations.
umask 0022;
2006-05-31 09:24:54 +00:00
# Process the URLs specified on the command line.
2004-12-16 15:31:50 +00:00
my %narFiles;
my %localPaths;
2004-12-16 15:31:50 +00:00
my %patches;
my $skipWrongStore = 0;
sub downloadFile {
my $url = shift;
$ENV{"PRINT_PATH"} = 1;
$ENV{"QUIET"} = 1;
2007-08-14 13:15:59 +00:00
my ($dummy, $path) = `$binDir/nix-prefetch-url '$url'`;
2007-08-15 09:24:06 +00:00
die "cannot fetch `$url'" if $? != 0;
2007-08-14 13:15:59 +00:00
die "nix-prefetch-url did not return a path" unless defined $path;
2007-08-15 09:24:06 +00:00
chomp $path;
return $path;
}
sub processURL {
my $url = shift;
$url =~ s/\/$//;
my $manifest;
# First see if a bzipped manifest is available.
if (system("@curl@ --fail --silent --head '$url'.bz2 > /dev/null") == 0) {
print "obtaining list of Nix archives at `$url.bz2'...\n";
my $bzipped = downloadFile "$url.bz2";
$manifest = "$tmpDir/MANIFEST";
system("@bunzip2@ < $bzipped > $manifest") == 0
or die "cannot decompress manifest";
$manifest = (`$binDir/nix-store --add $manifest`
or die "cannot copy $manifest to the store");
chomp $manifest;
}
# Otherwise, just get the uncompressed manifest.
else {
print "obtaining list of Nix archives at `$url'...\n";
$manifest = downloadFile $url;
}
2009-02-27 09:53:58 +00:00
my $version = readManifest($manifest, \%narFiles, \%localPaths, \%patches);
2009-02-27 09:53:58 +00:00
die "`$url' is not a manifest or it is too old (i.e., for Nix <= 0.7)\n" if $version < 3;
die "manifest `$url' is too new\n" if $version >= 5;
if ($skipWrongStore) {
foreach my $path (keys %narFiles) {
if (substr($path, 0, length($storeDir) + 1) ne "$storeDir/") {
print STDERR "warning: manifest `$url' assumes a Nix store at a different location than $storeDir, skipping...\n";
exit 0;
}
}
}
my $baseName = "unnamed";
if ($url =~ /\/([^\/]+)\/[^\/]+$/) { # get the forelast component
$baseName = $1;
}
my $hash = `$binDir/nix-hash --flat '$manifest'`
or die "cannot hash `$manifest'";
chomp $hash;
my $finalPath = "$manifestDir/$baseName-$hash.nixmanifest";
system("@coreutils@/ln", "-sfn", "$manifest", "$finalPath") == 0
or die "cannot link `$finalPath to `$manifest'";
}
while (@ARGV) {
my $url = shift @ARGV;
if ($url eq "--skip-wrong-store") {
$skipWrongStore = 1;
} else {
processURL $url;
}
}
2003-07-10 15:24:50 +00:00
my $size = scalar (keys %narFiles) + scalar (keys %localPaths);
print "$size store paths in manifest\n";