libgdiplus: add license + meta data

This commit is contained in:
Markus Kowalewski 2018-10-17 20:31:22 +02:00
parent f54413553b
commit 2887798de5
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -34,7 +34,10 @@ stdenv.mkDerivation rec {
ln -s $out/lib/libgdiplus.0.dylib $out/lib/libgdiplus.so
'';
meta = {
platforms = stdenv.lib.platforms.unix;
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;
};
}