better fix for recent nix versions
This commit is contained in:
parent
f868637417
commit
dd18c6753a
1 changed files with 1 additions and 1 deletions
|
@ -9,6 +9,6 @@ in
|
|||
lib.concatStringsSep "\n" ([
|
||||
"mkdir $out"
|
||||
]
|
||||
++ lib.mapAttrsToList (name: source: "ln -s ${source.outPath} $out/${name}") sources
|
||||
++ lib.mapAttrsToList (name: source: "cp -r --reflink=auto ${source.outPath} $out/${name}") sources
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue