waylandpp: don't wrap env.FONTCONFIG_FILE string in list (#492622)

This commit is contained in:
Jo
2026-02-21 10:28:44 +00:00
committed by GitHub
@@ -34,9 +34,11 @@ stdenv.mkDerivation (finalAttrs: {
];
# Complains about not being able to find the fontconfig config file otherwise
env.FONTCONFIG_FILE = lib.optional docSupport (makeFontsConf {
fontDirectories = [ ];
});
env = lib.optionalAttrs docSupport {
FONTCONFIG_FILE = makeFontsConf {
fontDirectories = [ ];
};
};
nativeBuildInputs = [
cmake