mirror of
https://github.com/NixOS/nix.git
synced 2025-11-26 12:10:59 +01:00
OutputSpec: Allow all valid output names
Fixes #7624.
(cherry picked from commit 95cfd50d25)
This commit is contained in:
parent
7cd4a8f73c
commit
9ccde7ec9f
3 changed files with 13 additions and 11 deletions
|
|
@ -91,9 +91,9 @@ rec {
|
|||
|
||||
e = mkDerivation {
|
||||
name = "multiple-outputs-e";
|
||||
outputs = [ "a" "b" "c" ];
|
||||
meta.outputsToInstall = [ "a" "b" ];
|
||||
buildCommand = "mkdir $a $b $c";
|
||||
outputs = [ "a_a" "b" "c" ];
|
||||
meta.outputsToInstall = [ "a_a" "b" ];
|
||||
buildCommand = "mkdir $a_a $b $c";
|
||||
};
|
||||
|
||||
independent = mkDerivation {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue