nixpkgs-suyu/pkgs/development/libraries/SDL2_image/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.2 KiB
Nix
Raw Normal View History

2021-11-01 10:54:37 +01:00
{ lib, stdenv, fetchurl
, pkg-config
, 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";
};
2021-11-01 10:54:37 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ SDL2 libpng libjpeg libtiff giflib libwebp libXpm zlib ]
++ lib.optional stdenv.isDarwin Foundation;
2017-11-27 16:30:05 +01:00
configureFlags = [
# Disable dynamically loaded dependencies
"--disable-jpg-shared"
"--disable-png-shared"
"--disable-tif-shared"
"--disable-webp-shared"
] ++ lib.optionals stdenv.isDarwin [
# Darwin headless will hang when trying to run the SDL test program
"--disable-sdltest"
# Don't use native macOS frameworks
"--disable-imageio"
];
2017-11-27 16:30:05 +01:00
enableParallelBuilding = true;
meta = with lib; {
description = "SDL image library";
homepage = "http://www.libsdl.org/projects/SDL_image/";
2017-11-27 16:30:05 +01:00
platforms = platforms.unix;
license = licenses.zlib;
2018-03-06 11:24:12 +01:00
maintainers = with maintainers; [ cpages ];
};
}