Avoid top-level with ...;
in pkgs/build-support/fetchrepoproject/default.nix
This commit is contained in:
parent
4fc5d50549
commit
aa32ce526a
1 changed files with 7 additions and 2 deletions
|
@ -9,9 +9,14 @@
|
|||
assert repoRepoRev != "" -> repoRepoURL != "";
|
||||
assert createMirror -> !useArchive;
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
inherit (lib)
|
||||
concatMapStringsSep
|
||||
concatStringsSep
|
||||
fetchers
|
||||
optionalString
|
||||
;
|
||||
|
||||
extraRepoInitFlags = [
|
||||
(optionalString (repoRepoURL != "") "--repo-url=${repoRepoURL}")
|
||||
(optionalString (repoRepoRev != "") "--repo-branch=${repoRepoRev}")
|
||||
|
|
Loading…
Reference in a new issue