mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
e0e39a63f4
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
28 lines
823 B
Nix
28 lines
823 B
Nix
{ stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, libungif, libXpm, zlib, Foundation }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "SDL2_image-${version}";
|
|
version = "2.0.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
|
|
sha256 = "1b6f7002bm007y3zpyxb5r6ag0lml51jyvx1pwpj9sq24jfc8kp7";
|
|
};
|
|
|
|
buildInputs = [ SDL2 libpng libjpeg libtiff libungif 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 ];
|
|
};
|
|
}
|