2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, glib, cairo, Carbon, fontconfig
|
2018-07-20 17:44:44 -07:00
|
|
|
, libtiff, giflib, libjpeg, libpng
|
2018-03-09 10:28:28 -08:00
|
|
|
, libXrender, libexif, autoreconfHook, fetchpatch }:
|
2012-01-04 05:55:54 -08:00
|
|
|
|
2019-09-22 00:38:09 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libgdiplus";
|
2020-05-05 09:34:41 -07:00
|
|
|
version = "6.0.5";
|
2012-01-04 05:55:54 -08:00
|
|
|
|
2018-03-05 05:39:01 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mono";
|
|
|
|
repo = "libgdiplus";
|
2019-09-22 00:38:09 -07:00
|
|
|
rev = version;
|
2020-05-05 09:34:41 -07:00
|
|
|
sha256 = "1387lgph5r17viv3rkf5hbksdn435njzmra7s17q0nzk2mkkm68c";
|
2012-01-04 05:55:54 -08:00
|
|
|
};
|
|
|
|
|
2013-12-07 04:32:57 -08:00
|
|
|
NIX_LDFLAGS = "-lgif";
|
|
|
|
|
2019-09-20 04:28:34 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-05-28 13:53:19 -07:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2018-03-05 05:39:01 -08:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
configureFlags = lib.optional stdenv.cc.isClang "--host=${stdenv.hostPlatform.system}";
|
2019-10-27 14:20:00 -07:00
|
|
|
|
2020-08-24 22:41:25 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-03-06 05:49:37 -08:00
|
|
|
buildInputs =
|
2018-03-05 05:39:01 -08:00
|
|
|
[ glib cairo fontconfig libtiff giflib
|
2012-03-06 05:49:37 -08:00
|
|
|
libjpeg libpng libXrender libexif
|
2016-01-23 19:49:50 -08:00
|
|
|
]
|
2021-01-21 09:00:13 -08:00
|
|
|
++ lib.optional stdenv.isDarwin Carbon;
|
2016-08-02 09:06:29 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
2017-02-07 11:00:48 -08:00
|
|
|
ln -s $out/lib/libgdiplus.0.dylib $out/lib/libgdiplus.so
|
|
|
|
'';
|
|
|
|
|
2018-03-09 10:28:28 -08:00
|
|
|
checkPhase = ''
|
|
|
|
make check -w
|
|
|
|
'';
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2018-10-17 11:31:22 -07:00
|
|
|
description = "Mono library that provides a GDI+-compatible API on non-Windows operating systems";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.mono-project.com/docs/gui/libgdiplus/";
|
2018-10-17 11:31:22 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2012-01-04 05:55:54 -08:00
|
|
|
}
|