mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 14:06:16 +02:00
Fix nix-shell for derivation with multiple outputs
If derivation declares multiple outputs and first (default) output if not "out", then "nix-instantiate" calls return path with output names appended after "!". Than suffix must be stripped before ant path checks are done.
This commit is contained in:
parent
1c2550a2ae
commit
59c9019685
1 changed files with 1 additions and 0 deletions
|
@ -196,6 +196,7 @@ foreach my $expr (@exprs) {
|
||||||
if ($runEnv) {
|
if ($runEnv) {
|
||||||
die "$0: a single derivation is required\n" if scalar @drvPaths != 1;
|
die "$0: a single derivation is required\n" if scalar @drvPaths != 1;
|
||||||
my $drvPath = $drvPaths[0];
|
my $drvPath = $drvPaths[0];
|
||||||
|
$drvPath = (split '!',$drvPath)[0];
|
||||||
$drvPath = readlink $drvPath or die "cannot read symlink `$drvPath'" if -l $drvPath;
|
$drvPath = readlink $drvPath or die "cannot read symlink `$drvPath'" if -l $drvPath;
|
||||||
my $drv = derivationFromPath($drvPath);
|
my $drv = derivationFromPath($drvPath);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue