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

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

62 lines
1.4 KiB
Nix
Raw Normal View History

2021-11-22 12:17:49 +00:00
{ lib, stdenv, fetchurl
, fetchpatch
, autoconf
, automake
, pkg-config
, zlib
, libpng
, libjpeg
, libwebp
, libtiff
, libXpm
, libavif
, fontconfig
, freetype
}:
stdenv.mkDerivation rec {
pname = "gd";
2021-11-22 12:17:49 +00:00
version = "2.3.3";
2015-12-23 01:59:47 +00:00
src = fetchurl {
url = "https://github.com/libgd/libgd/releases/download/${pname}-${version}/libgd-${version}.tar.xz";
2021-11-22 12:17:49 +00:00
sha256 = "0qas3q9xz3wgw06dm2fj0i189rain6n60z1vyq50d5h7wbn25s1z";
};
2015-12-23 01:59:47 +00:00
patches = [
(fetchpatch { # included in > 2.3.3
name = "restore-GD_FLIP.patch";
url = "https://github.com/libgd/libgd/commit/f4bc1f5c26925548662946ed7cfa473c190a104a.diff";
sha256 = "XRXR3NOkbEub3Nybaco2duQk0n8vxif5mTl2AUacn9w=";
})
];
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
configureFlags =
[
"--enable-gd-formats"
]
# -pthread gets passed to clang, causing warnings
++ lib.optional stdenv.isDarwin "--enable-werror=no";
nativeBuildInputs = [ autoconf automake pkg-config ];
buildInputs = [ zlib fontconfig freetype libpng libjpeg libwebp libtiff libXpm libavif ];
outputs = [ "bin" "dev" "out" ];
2016-05-22 12:03:16 +00:00
postFixup = ''moveToOutput "bin/gdlib-config" $dev'';
2016-06-02 17:50:28 +00:00
enableParallelBuilding = true;
2018-08-08 18:34:25 +00:00
doCheck = false; # fails 2 tests
meta = with lib; {
2020-03-24 06:48:50 +00:00
homepage = "https://libgd.github.io/";
description = "A dynamic image creation library";
license = licenses.free; # some custom license
platforms = platforms.unix;
};
}