buildDotnetModule: fix running fetch-deps with no nugetDeps defined.
This eases the initial setup when creating a package
This commit is contained in:
parent
7b22218f11
commit
8318df5b63
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ stdenvNoCC.mkDerivation (args // {
|
|||
|
||||
passthru = {
|
||||
inherit nuget-source;
|
||||
} // lib.optionalAttrs (nugetDepsFile != null) {
|
||||
} // lib.optionalAttrs (!lib.isDerivation nugetDeps) {
|
||||
fetch-deps =
|
||||
let
|
||||
flags = dotnetFlags ++ dotnetRestoreFlags;
|
||||
|
|
Loading…
Reference in a new issue