We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 297e5bb commit 8048791Copy full SHA for 8048791
pkgs/by-name/gl/gltron/package.nix
@@ -39,6 +39,10 @@ stdenv.mkDerivation rec {
39
# The build fails, unless we disable the default -Wall -Werror
40
configureFlags = [ "--disable-warn" ];
41
42
+ makeFlags = [ "AR=${stdenv.cc.targetPrefix}ar" ];
43
+
44
+ env.SDL_CONFIG = lib.getExe' SDL.dev "sdl-config";
45
46
buildInputs = [
47
SDL
48
libGLU
@@ -50,6 +54,7 @@ stdenv.mkDerivation rec {
50
54
SDL_sound
51
55
];
52
56
57
+ strictDeps = true;
53
58
enableParallelBuilding = true;
59
60
meta = {
0 commit comments