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.
#
patches = [
./c-missing_xm_h.patch
./c-render_table_crash.patch
./c-missing_xm_h.patch
./c-render_table_crash.patch
./c-xpmpipethrough.patch
];
meta = {
platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
description = "An open source clone of the Motif widget set";
homepage = http://lesstif.sourceforge.net;
platforms = platforms.unix;
license = with licenses; [ gpl2 lgpl2 ];
};
}