forked from lix-project/lix
aa8fda4b54
build action for `system' packages (like system.fix) that have dependencies on all packages we want to activate. So the command sequence to switch to a new activation configuration of the system would be: $ fix -i .../fixdescriptors/system.fix ... system.fix -> 89cf4713b37cc66989304abeb9ea189f $ nix-switch 89cf4713b37cc66989304abeb9ea189f * A nix-profile.sh script that can be included in .bashrc.
59 lines
1.2 KiB
Perl
Executable file
59 lines
1.2 KiB
Perl
Executable file
#! /usr/bin/perl -w
|
|
|
|
use strict;
|
|
use Cwd;
|
|
|
|
my $selfdir = cwd;
|
|
|
|
my @dirs = ("bin", "sbin", "lib", "include");
|
|
|
|
# Create the subdirectories.
|
|
mkdir $selfdir;
|
|
foreach my $dir (@dirs) {
|
|
mkdir "$selfdir/$dir";
|
|
}
|
|
|
|
# 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 (-d $srcfile) {
|
|
# !!! hack for resolving name clashes
|
|
if (!-e $dstfile) {
|
|
mkdir($dstfile) or
|
|
die "error creating directory $dstfile";
|
|
}
|
|
-d $dstfile or die "$dstfile is not a directory";
|
|
createLinks($srcfile, $dstfile);
|
|
} elsif (-l $dstfile) {
|
|
my $target = readlink($dstfile);
|
|
die "collission between $srcfile and $target";
|
|
} else {
|
|
print "linking $dstfile to $srcfile\n";
|
|
symlink($srcfile, $dstfile) or
|
|
die "error creating link $dstfile";
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach my $name (keys %ENV) {
|
|
|
|
next unless ($name =~ /^act.*$/);
|
|
|
|
my $pkgdir = $ENV{$name};
|
|
|
|
print "merging $pkgdir\n";
|
|
|
|
foreach my $dir (@dirs) {
|
|
createLinks("$pkgdir/$dir", "$selfdir/$dir");
|
|
}
|
|
}
|