lesstif: add license, description, and homepage

This commit is contained in:
Markus Kowalewski 2018-10-17 20:01:03 +02:00
parent 15c5f9b1f0
commit c8709769dc
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -14,12 +14,15 @@ stdenv.mkDerivation rec {
# in Debian, so we assume they have been sent upstream. # in Debian, so we assume they have been sent upstream.
# #
patches = [ patches = [
./c-missing_xm_h.patch ./c-missing_xm_h.patch
./c-render_table_crash.patch ./c-render_table_crash.patch
./c-xpmpipethrough.patch ./c-xpmpipethrough.patch
]; ];
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.unix; description = "An open source clone of the Motif widget set";
homepage = http://lesstif.sourceforge.net;
platforms = platforms.unix;
license = with licenses; [ gpl2 lgpl2 ];
}; };
} }