Unverified Commit 5c888381 authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

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

parents 52e55b9b b304e919
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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 {
  env = lib.optionalAttrs docSupport {
    FONTCONFIG_FILE = makeFontsConf {
      fontDirectories = [ ];
  });
    };
  };

  nativeBuildInputs = [
    cmake