nixpkgs/pkgs/development/libraries/SDL2_image/default.nix
R. RyanTM 2110e1bdd8 SDL2_image: 2.0.4 -> 2.0.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/sdl2_image/versions
2019-07-16 12:14:56 -07:00

28 lines
840 B
Nix

{ stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, libungif, libwebp, libXpm, zlib, Foundation }:
stdenv.mkDerivation rec {
name = "SDL2_image-${version}";
version = "2.0.5";
src = fetchurl {
url = "https://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
sha256 = "1l0864kas9cwpp2d32yxl81g98lx40dhbdp03dz7sbv84vhgdmdx";
};
buildInputs = [ SDL2 libpng libjpeg libtiff libungif libwebp libXpm zlib ]
++ stdenv.lib.optional stdenv.isDarwin Foundation;
configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-sdltest";
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 ];
};
}