libui: add license meta

This commit is contained in:
Leon Schuermann 2018-10-11 14:28:08 +02:00
parent a174f3ea97
commit 55c736cd78

View File

@ -49,9 +49,10 @@ in
install_name_tool -id $out/lib/${shortName}.A.dylib $out/lib/${shortName}.A.dylib
'';
meta = {
meta = with stdenv.lib; {
homepage = https://github.com/andlabs/libui;
description = "Simple and portable (but not inflexible) GUI library in C that uses the native GUI technologies of each platform it supports.";
platforms = stdenv.lib.platforms.unix;
license = licenses.mit;
platforms = platforms.unix;
};
}