mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
6e3b5fd046
libungif was merged into giflib in 2006, and hasn't been updated since. All non-broken packages still using it build fine with giflib. See <http://giflib.sourceforge.net/history.html>.
28 lines
824 B
Nix
28 lines
824 B
Nix
{ lib, stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, giflib, libwebp, libXpm, zlib, Foundation }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "SDL2_image";
|
|
version = "2.0.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.libsdl.org/projects/SDL_image/release/${pname}-${version}.tar.gz";
|
|
sha256 = "1l0864kas9cwpp2d32yxl81g98lx40dhbdp03dz7sbv84vhgdmdx";
|
|
};
|
|
|
|
buildInputs = [ SDL2 libpng libjpeg libtiff giflib libwebp libXpm zlib ]
|
|
++ lib.optional stdenv.isDarwin Foundation;
|
|
|
|
|
|
configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "SDL image library";
|
|
homepage = "http://www.libsdl.org/projects/SDL_image/";
|
|
platforms = platforms.unix;
|
|
license = licenses.zlib;
|
|
maintainers = with maintainers; [ cpages ];
|
|
};
|
|
}
|