ipe: don't use lib.optional with a list

This commit is contained in:
figsoda 2023-05-29 19:45:10 -04:00
parent e4b6aeb3a9
commit 3605f48b4d

View file

@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
"IPE_NO_SPELLCHECK=1" # qtSpell is not yet packaged
];
qtWrapperArgs = lib.optional withTeXLive [ "--prefix PATH : ${lib.makeBinPath [ texlive ]}" ];
qtWrapperArgs = lib.optionals withTeXLive [ "--prefix PATH : ${lib.makeBinPath [ texlive ]}" ];
enableParallelBuilding = true;