enlightenment.efl: fix license

This commit is contained in:
José Romildo Malaquias 2020-10-04 12:43:21 -03:00
parent ec54c0989c
commit bf0370c045

View File

@ -197,11 +197,11 @@ stdenv.mkDerivation rec {
patchelf --add-needed ${libsndfile.out}/lib/libsndfile.so $out/lib/libecore_audio.so patchelf --add-needed ${libsndfile.out}/lib/libsndfile.so $out/lib/libecore_audio.so
''; '';
meta = { meta = with stdenv.lib; {
description = "Enlightenment foundation libraries"; description = "Enlightenment foundation libraries";
homepage = "https://enlightenment.org/"; homepage = "https://enlightenment.org/";
license = stdenv.lib.licenses.lgpl3; license = with licenses; [ bsd2 lgpl2Only licenses.zlib ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx romildo ]; maintainers = with maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
}; };
} }