mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
jimtcl: build against SDL2
Upstream commit: 3b834e42ee
jimtcl will automatically detect the sdl major version,
and adjust its header includes accordingly.
SDL1 is basically EOL, so SDL2 is preferrable when available.
This commit is contained in:
parent
bd1c971af1
commit
34dc22cf30
1 changed files with 4 additions and 4 deletions
|
@ -10,8 +10,8 @@
|
||||||
|
|
||||||
sqlite,
|
sqlite,
|
||||||
readline,
|
readline,
|
||||||
SDL,
|
SDL2,
|
||||||
SDL_gfx,
|
SDL2_gfx,
|
||||||
openssl,
|
openssl,
|
||||||
|
|
||||||
SDLSupport ? true,
|
SDLSupport ? true,
|
||||||
|
@ -41,8 +41,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
openssl
|
openssl
|
||||||
]
|
]
|
||||||
++ (lib.optionals SDLSupport [
|
++ (lib.optionals SDLSupport [
|
||||||
SDL
|
SDL2
|
||||||
SDL_gfx
|
SDL2_gfx
|
||||||
]);
|
]);
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue