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

62 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch
, autoconf
, automake
, pkg-config
, zlib
, libpng
, libjpeg ? null
, libwebp ? null
, libtiff ? null
, libXpm ? null
, fontconfig
, freetype
}:
stdenv.mkDerivation rec {
pname = "gd";
2020-03-24 07:48:50 +01:00
version = "2.3.0";
2015-12-23 02:59:47 +01:00
src = fetchurl {
url = "https://github.com/libgd/libgd/releases/download/${pname}-${version}/libgd-${version}.tar.xz";
2020-03-24 07:48:50 +01:00
sha256 = "0n5czhxzinvjvmhkf5l9fwjdx5ip69k5k7pj6zwb6zs1k9dibngc";
};
2015-12-23 02:59:47 +01:00
hardeningDisable = [ "format" ];
patches = [
# Fixes an issue where some other packages would fail to build
# their documentation with an error like:
# "Error: Problem doing text layout"
#
# Can be removed if Wayland can still be built successfully with
# documentation.
(fetchpatch {
url = "https://github.com/libgd/libgd/commit/3dd0e308cbd2c24fde2fc9e9b707181252a2de95.patch";
excludes = [ "tests/gdimagestringft/.gitignore" ];
sha256 = "12iqlanl9czig9d7c3rvizrigw2iacimnmimfcny392dv9iazhl1";
})
];
2015-12-23 02:59:47 +01:00
# -pthread gets passed to clang, causing warnings
configureFlags = stdenv.lib.optional stdenv.isDarwin "--enable-werror=no";
nativeBuildInputs = [ autoconf automake pkg-config ];
buildInputs = [ zlib fontconfig freetype ];
propagatedBuildInputs = [ libpng libjpeg libwebp libtiff libXpm ];
outputs = [ "bin" "dev" "out" ];
2016-05-22 14:03:16 +02:00
postFixup = ''moveToOutput "bin/gdlib-config" $dev'';
2016-06-02 19:50:28 +02:00
enableParallelBuilding = true;
2018-08-08 20:34:25 +02:00
doCheck = false; # fails 2 tests
meta = with stdenv.lib; {
2020-03-24 07:48:50 +01:00
homepage = "https://libgd.github.io/";
description = "A dynamic image creation library";
license = licenses.free; # some custom license
platforms = platforms.unix;
};
}