25 lines
744 B
Nix
25 lines
744 B
Nix
{ stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, libungif, libXpm, zlib, Foundation }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "SDL2_image-${version}";
|
|
version = "2.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
|
|
sha256 = "0s13dmakn21q6yw8avl67d4zkxzl1wap6l5nwf6cvzrmlxfw441m";
|
|
};
|
|
|
|
buildInputs = [ SDL2 libpng libjpeg libtiff libungif libXpm zlib ]
|
|
++ stdenv.lib.optional stdenv.isDarwin Foundation;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "SDL image library";
|
|
homepage = http://www.libsdl.org/projects/SDL_image/;
|
|
platforms = platforms.unix;
|
|
license = licenses.zlib;
|
|
maintainers = with maintainers; [ cpages ];
|
|
};
|
|
}
|