37d7abd694
The expression `with E1; E2' evaluates to E2 with all bindings in the attribute set E1 substituted. E.g., with {x = 123;}; x evaluates to 123. That is, the attribute set E1 is in scope in E2. This is particularly useful when importing files containing lots definitions. E.g., instead of let { inherit (import ./foo.nix) a b c d e f; body = ... a ... f ...; } we can now say with import ./foo.nix; ... a ... f ... I.e., we don't have to say what variables should be brought into scope.
95 lines
2.2 KiB
Perl
Executable file
95 lines
2.2 KiB
Perl
Executable file
#! @perl@ -w
|
|
|
|
use strict;
|
|
use Cwd;
|
|
use IO::Handle;
|
|
|
|
STDOUT->autoflush(1);
|
|
|
|
my $out = $ENV{"out"};
|
|
mkdir "$out", 0755 || die "error creating $out";
|
|
|
|
|
|
# For each activated package, create symlinks.
|
|
|
|
sub createLinks {
|
|
my $srcDir = shift;
|
|
my $dstDir = shift;
|
|
|
|
my @srcFiles = glob("$srcDir/*");
|
|
|
|
foreach my $srcFile (@srcFiles) {
|
|
my $baseName = $srcFile;
|
|
$baseName =~ s/^.*\///g; # strip directory
|
|
my $dstFile = "$dstDir/$baseName";
|
|
|
|
if ($srcFile =~ /\/propagated-build-inputs$/ ||
|
|
$srcFile =~ /\/nix-support$/ ||
|
|
$srcFile =~ /\/log$/)
|
|
{
|
|
# Do nothing.
|
|
}
|
|
|
|
elsif (-d $srcFile) {
|
|
|
|
lstat $dstFile;
|
|
|
|
if (-d _) {
|
|
createLinks($srcFile, $dstFile);
|
|
}
|
|
|
|
elsif (-l _) {
|
|
my $target = readlink $dstFile or die;
|
|
if (!-d $target) {
|
|
die "collission between directory `$srcFile' and non-directory `$target'";
|
|
}
|
|
unlink $dstFile or die "error unlinking `$dstFile': $!";
|
|
mkdir $dstFile, 0755 ||
|
|
die "error creating directory `$dstFile': $!";
|
|
createLinks($target, $dstFile);
|
|
createLinks($srcFile, $dstFile);
|
|
}
|
|
|
|
else {
|
|
symlink($srcFile, $dstFile) ||
|
|
die "error creating link `$dstFile': $!";
|
|
}
|
|
}
|
|
|
|
elsif (-l $dstFile) {
|
|
my $target = readlink $dstFile;
|
|
die "collission between `$srcFile' and `$target'";
|
|
}
|
|
|
|
else {
|
|
# print "linking $dstFile to $srcFile\n";
|
|
symlink($srcFile, $dstFile) ||
|
|
die "error creating link `$dstFile': $!";
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
my %done;
|
|
|
|
sub addPkg {
|
|
my $pkgDir = shift;
|
|
|
|
return if (defined $done{$pkgDir});
|
|
$done{$pkgDir} = 1;
|
|
|
|
createLinks("$pkgDir", "$out");
|
|
}
|
|
|
|
|
|
my @args = split ' ', $ENV{"derivations"};
|
|
|
|
while (scalar @args > 0) {
|
|
my $drvPath = shift @args;
|
|
print "adding $drvPath\n";
|
|
addPkg($drvPath);
|
|
}
|
|
|
|
|
|
symlink($ENV{"manifest"}, "$out/manifest") or die "cannot create manifest";
|