nixpkgs/pkgs/development/libraries/gd/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
, pkgconfig
, zlib
, libpng
, libjpeg ? null
, libwebp ? null
, libtiff ? null
, libXpm ? null
, fontconfig
, freetype
}:
stdenv.mkDerivation rec {
pname = "gd";
version = "2.2.5";
2015-12-23 04:59:47 +03:00
src = fetchurl {
url = "https://github.com/libgd/libgd/releases/download/${pname}-${version}/libgd-${version}.tar.xz";
sha256 = "0lfy5f241sbv8s3splm2zqiaxv7lxrcshh875xryryk7yk5jqc4c";
};
2015-12-23 04:59:47 +03:00
hardeningDisable = [ "format" ];
2015-12-23 04:59:47 +03:00
# -pthread gets passed to clang, causing warnings
configureFlags = stdenv.lib.optional stdenv.isDarwin "--enable-werror=no";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib fontconfig freetype ];
propagatedBuildInputs = [ libpng libjpeg libwebp libtiff libXpm ];
outputs = [ "bin" "dev" "out" ];
2016-05-22 15:03:16 +03:00
postFixup = ''moveToOutput "bin/gdlib-config" $dev'';
2016-06-02 20:50:28 +03:00
enableParallelBuilding = true;
2018-08-08 21:34:25 +03:00
doCheck = false; # fails 2 tests
meta = with stdenv.lib; {
homepage = https://libgd.github.io/;
description = "A dynamic image creation library";
license = licenses.free; # some custom license
platforms = platforms.unix;
};
}