Skip to content

Commit 7c96bdd

Browse files
committed
pkgs/impure-overlays.nix: must always yield a list
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
1 parent 2aba62e commit 7c96bdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/top-level/impure-overlays.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let
3838
)
3939
else
4040
# it's a file, so the result is the contents of the file itself
41-
import path;
41+
[ (import path) ];
4242
in
4343
if pathOverlays != "" && builtins.pathExists pathOverlays then
4444
overlays pathOverlays

0 commit comments

Comments
 (0)