2004-03-15 15:23:53 +00:00
|
|
|
#! @perl@ -w
|
2003-11-24 11:11:40 +00:00
|
|
|
|
|
|
|
use strict;
|
2006-10-04 18:58:11 +00:00
|
|
|
use File::Temp qw(tempdir);
|
2003-11-24 11:11:40 +00:00
|
|
|
|
2008-11-20 15:44:59 +00:00
|
|
|
my $binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@";
|
|
|
|
|
2006-09-21 18:54:08 +00:00
|
|
|
|
|
|
|
sub usageError {
|
|
|
|
print STDERR <<EOF;
|
|
|
|
Usage: nix-install-package (FILE | --url URL)
|
|
|
|
|
|
|
|
Install a Nix Package (.nixpkg) either directly from FILE or by
|
|
|
|
downloading it from URL.
|
|
|
|
|
|
|
|
Flags:
|
|
|
|
--profile / -p LINK: install into the specified profile
|
2007-09-18 08:26:55 +00:00
|
|
|
--non-interactive: don't run inside a new terminal
|
2006-09-21 18:54:08 +00:00
|
|
|
EOF
|
|
|
|
; # '
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Parse the command line arguments.
|
|
|
|
my @args = @ARGV;
|
|
|
|
usageError if scalar @args == 0;
|
|
|
|
|
|
|
|
my $source;
|
|
|
|
my $fromURL = 0;
|
|
|
|
my @extraNixEnvArgs = ();
|
|
|
|
my $interactive = 1;
|
|
|
|
|
|
|
|
while (scalar @args) {
|
|
|
|
my $arg = shift @args;
|
|
|
|
if ($arg eq "--help") {
|
|
|
|
usageError;
|
|
|
|
}
|
|
|
|
elsif ($arg eq "--url") {
|
|
|
|
$fromURL = 1;
|
|
|
|
}
|
|
|
|
elsif ($arg eq "--profile" || $arg eq "-p") {
|
|
|
|
my $profile = shift @args;
|
|
|
|
usageError if !defined $profile;
|
|
|
|
push @extraNixEnvArgs, "-p", $profile;
|
|
|
|
}
|
|
|
|
elsif ($arg eq "--non-interactive") {
|
|
|
|
$interactive = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$source = $arg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
usageError unless defined $source;
|
2003-11-24 11:11:40 +00:00
|
|
|
|
|
|
|
|
2005-02-25 15:42:52 +00:00
|
|
|
# Re-execute in a terminal, if necessary, so that if we're executed
|
|
|
|
# from a web browser, the user gets to see us.
|
2006-09-21 18:54:08 +00:00
|
|
|
if ($interactive && !defined $ENV{"NIX_HAVE_TERMINAL"}) {
|
2005-02-25 15:42:52 +00:00
|
|
|
$ENV{"NIX_HAVE_TERMINAL"} = "1";
|
2005-03-11 15:27:37 +00:00
|
|
|
$ENV{"LD_LIBRARY_PATH"} = "";
|
2006-09-21 18:54:08 +00:00
|
|
|
foreach my $term ("xterm", "konsole", "gnome-terminal", "xterm") {
|
2008-11-20 15:44:59 +00:00
|
|
|
exec($term, "-e", "$binDir/nix-install-package", @ARGV);
|
2006-09-21 11:29:14 +00:00
|
|
|
}
|
2005-02-25 15:42:52 +00:00
|
|
|
die "cannot execute `xterm'";
|
|
|
|
}
|
2003-11-24 11:11:40 +00:00
|
|
|
|
|
|
|
|
2006-10-04 18:58:11 +00:00
|
|
|
my $tmpDir = tempdir("nix-install-package.XXXXXX", CLEANUP => 1, TMPDIR => 1)
|
|
|
|
or die "cannot create a temporary directory";
|
2006-09-21 18:54:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
sub barf {
|
|
|
|
my $msg = shift;
|
|
|
|
print "$msg\n";
|
|
|
|
<STDIN> if $interactive;
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Download the package description, if necessary.
|
|
|
|
my $pkgFile = $source;
|
|
|
|
if ($fromURL) {
|
|
|
|
$pkgFile = "$tmpDir/tmp.nixpkg";
|
2006-09-25 10:44:27 +00:00
|
|
|
system("@curl@", "--silent", $source, "-o", $pkgFile) == 0
|
2006-09-21 18:54:08 +00:00
|
|
|
or barf "curl failed: $?";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-25 15:42:52 +00:00
|
|
|
# Read and parse the package file.
|
2006-09-21 18:54:08 +00:00
|
|
|
open PKGFILE, "<$pkgFile" or barf "cannot open `$pkgFile': $!";
|
2005-02-25 15:42:52 +00:00
|
|
|
my $contents = <PKGFILE>;
|
|
|
|
close PKGFILE;
|
2003-11-24 11:11:40 +00:00
|
|
|
|
2006-09-21 18:54:08 +00:00
|
|
|
my $urlRE = "(?: [a-zA-Z][a-zA-Z0-9\+\-\.]*\:[a-zA-Z0-9\%\/\?\:\@\&\=\+\$\,\-\_\.\!\~\*\']+ )";
|
|
|
|
my $nameRE = "(?: [A-Za-z0-9\+\-\.\_\?\=]+ )"; # see checkStoreName()
|
|
|
|
my $systemRE = "(?: [A-Za-z0-9\+\-\_]+ )";
|
|
|
|
my $pathRE = "(?: \/ [\/A-Za-z0-9\+\-\.\_\?\=]* )";
|
|
|
|
|
|
|
|
# Note: $pathRE doesn't check that whether we're looking at a valid
|
|
|
|
# store path. We'll let nix-env do that.
|
|
|
|
|
|
|
|
$contents =~
|
|
|
|
/ ^ \s* (\S+) \s+ ($urlRE) \s+ ($nameRE) \s+ ($systemRE) \s+ ($pathRE) \s+ ($pathRE) /x
|
|
|
|
or barf "invalid package contents";
|
2005-02-25 15:42:52 +00:00
|
|
|
my $version = $1;
|
|
|
|
my $manifestURL = $2;
|
|
|
|
my $drvName = $3;
|
|
|
|
my $system = $4;
|
|
|
|
my $drvPath = $5;
|
|
|
|
my $outPath = $6;
|
|
|
|
|
2006-09-21 18:54:08 +00:00
|
|
|
barf "invalid package version `$version'" unless $version eq "NIXPKG1";
|
2005-02-25 15:42:52 +00:00
|
|
|
|
|
|
|
|
2006-09-21 18:54:08 +00:00
|
|
|
if ($interactive) {
|
|
|
|
# Ask confirmation.
|
|
|
|
print "Do you want to install `$drvName' (Y/N)? ";
|
|
|
|
my $reply = <STDIN>;
|
|
|
|
chomp $reply;
|
|
|
|
exit if $reply ne "y" && $reply ne "Y";
|
|
|
|
}
|
|
|
|
|
2003-11-24 11:11:40 +00:00
|
|
|
|
2009-02-27 14:06:38 +00:00
|
|
|
# Store the manifest in the temporary directory so that we don't
|
|
|
|
# pollute /nix/var/nix/manifests.
|
|
|
|
$ENV{NIX_MANIFESTS_DIR} = $tmpDir;
|
|
|
|
|
|
|
|
|
2005-02-25 15:42:52 +00:00
|
|
|
print "\nPulling manifests...\n";
|
2008-11-20 15:44:59 +00:00
|
|
|
system("$binDir/nix-pull", $manifestURL) == 0
|
2006-09-21 18:54:08 +00:00
|
|
|
or barf "nix-pull failed: $?";
|
|
|
|
|
2003-11-24 11:11:40 +00:00
|
|
|
|
2005-02-25 15:42:52 +00:00
|
|
|
print "\nInstalling package...\n";
|
2008-11-20 15:44:59 +00:00
|
|
|
system("$binDir/nix-env", "--install", $outPath, "--force-name", $drvName, @extraNixEnvArgs) == 0
|
2006-09-21 18:54:08 +00:00
|
|
|
or barf "nix-env failed: $?";
|
|
|
|
|
2003-11-24 11:11:40 +00:00
|
|
|
|
2006-09-21 18:54:08 +00:00
|
|
|
if ($interactive) {
|
|
|
|
print "\nInstallation succeeded! Press Enter to continue.\n";
|
|
|
|
<STDIN>;
|
|
|
|
}
|