sdl3-ttf: enable plutosvg integration

It is also enabled by default upstream so this should cause fewer
incompatibilities in the future.

Signed-off-by: Marcin Serwin <marcin@serwin.dev>
This commit is contained in:
Marcin Serwin
2025-06-24 22:36:49 +02:00
parent 5ab479ef01
commit 85fc64657c
+3 -2
View File
@@ -11,6 +11,7 @@
harfbuzz,
glib,
ninja,
plutosvg,
fixDarwinDylibNames,
}:
@@ -39,13 +40,13 @@ stdenv.mkDerivation (finalAttrs: {
freetype
harfbuzz
glib
plutosvg
];
cmakeFlags = [
(lib.cmakeBool "SDLTTF_STRICT" true)
(lib.cmakeBool "SDLTTF_HARFBUZZ" true)
# disable plutosvg (not in nixpkgs)
(lib.cmakeBool "SDLTTF_PLUTOSVG" false)
(lib.cmakeBool "SDLTTF_PLUTOSVG" true)
];
passthru = {