tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lambda-delta: fix build with clang
Ben Siraphob
2 years ago
13cd8b84
666bb4ea
+4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
emulators
lambda-delta
default.nix
+4
pkgs/applications/emulators/lambda-delta/default.nix
···
13
13
14
14
nativeBuildInputs = [ autoreconfHook pkg-config ];
15
15
buildInputs = [ SDL2 ];
16
16
+
env = lib.optionalAttrs stdenv.cc.isClang {
17
17
+
NIX_CFLAGS_COMPILE = "-std=c89";
18
18
+
};
19
19
+
16
20
17
21
configureFlags = [ "--without-SDL1" ];
18
22