sdl2-compat: add sdl2 to pkg-config modules

`sdl2` should also be present as a module to ensure that it's detected
by applications using `pkg-config` for SDL2 detection.
This commit is contained in:
Marcin Serwin
2025-05-07 20:31:48 +02:00
parent adeef1ee82
commit 7c848b0739
+4 -1
View File
@@ -108,6 +108,9 @@ stdenv.mkDerivation (finalAttrs: {
marcin-serwin
];
platforms = lib.platforms.all;
pkgConfigModules = [ "sdl2-compat" ];
pkgConfigModules = [
"sdl2-compat"
"sdl2"
];
};
})