treewide: optional -> optionals where the argument is a list

the argument to optional should not be list
This commit is contained in:
Artturin
2022-10-10 15:40:21 +03:00
parent f4ea1208ec
commit 7e49471316
197 changed files with 257 additions and 257 deletions
@@ -39,9 +39,9 @@ buildPythonPackage rec {
buildInputs = [
which
sphinx
] ++ lib.optional enableGhostscript [
] ++ lib.optionals enableGhostscript [
ghostscript
] ++ lib.optional stdenv.isDarwin [
] ++ lib.optionals stdenv.isDarwin [
Cocoa
];