mc: fix lib.optional being passed a list
This commit is contained in:
parent
34f3085148
commit
422e537bee
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
|||
openssl
|
||||
slang
|
||||
zip
|
||||
] ++ lib.optional x11Support [ libX11 ]
|
||||
] ++ lib.optionals x11Support [ libX11 ]
|
||||
++ lib.optionals (!stdenv.isDarwin) [ e2fsprogs gpm ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
|
Loading…
Reference in a new issue