543d7a41dc
Maybe this is a bad idea.
108 lines
2.5 KiB
Perl
Executable file
108 lines
2.5 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 =~ /\/perllocal.pod$/ ||
|
|
$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;
|
|
sub addPkg {
|
|
my $pkgDir = shift;
|
|
|
|
return if (defined $done{$pkgDir});
|
|
$done{$pkgDir} = 1;
|
|
|
|
print "adding $pkgDir\n";
|
|
createLinks("$pkgDir", "$out");
|
|
|
|
my $propagatedFN = "$pkgDir/nix-support/propagated-build-inputs";
|
|
if (-e $propagatedFN) {
|
|
open PROP, "<$propagatedFN" or die;
|
|
my $propagated = <PROP>;
|
|
close PROP;
|
|
my @propagated = split ' ', $propagated;
|
|
foreach my $p (@propagated) {
|
|
addPkg $p;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
my @args = split ' ', $ENV{"derivations"};
|
|
|
|
while (scalar @args > 0) {
|
|
my $drvPath = shift @args;
|
|
addPkg($drvPath);
|
|
}
|
|
|
|
|
|
symlink($ENV{"manifest"}, "$out/manifest") or die "cannot create manifest";
|