mjpegtools: remove SDL input when build is minimal
This commit is contained in:
parent
7b2106c32d
commit
192d7a4cba
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ libdv libjpeg libpng pkgconfig ]
|
buildInputs = [ libdv libjpeg libpng pkgconfig ]
|
||||||
++ lib.optional (!withMinimal) [ gtk libX11 SDL SDL_gfx ];
|
++ lib.optional (!withMinimal) [ gtk libX11 SDL SDL_gfx ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${SDL}/include/SDL" ];
|
NIX_CFLAGS_COMPILE = lib.optional (!withMinimal) "-I${SDL}/include/SDL";
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
sed -i -e '/ARCHFLAGS=/s:=.*:=:' configure
|
sed -i -e '/ARCHFLAGS=/s:=.*:=:' configure
|
||||||
|
|
Loading…
Reference in New Issue