tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
SDL_ttf: fix cross / strictDeps build
FliegendeWurst
1 year ago
8a5f060b
a7b52c47
+3
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sd
SDL_ttf
package.nix
+3
-4
pkgs/by-name/sd/SDL_ttf/package.nix
···
33
33
freetype
34
34
];
35
35
36
36
-
nativeBuildInputs = [
37
37
-
SDL
38
38
-
freetype
39
39
-
];
36
36
+
# pass in correct *-config for cross builds
37
37
+
env.SDL_CONFIG = lib.getExe' SDL.dev "sdl-config";
38
38
+
env.FREETYPE_CONFIG = lib.getExe' freetype.dev "freetype-config";
40
39
41
40
configureFlags = [
42
41
(lib.enableFeature enableSdltest "sdltest")