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