about summary refs log tree commit diff
path: root/pkgs/desktops/enlightenment/efl
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-10-04 12:43:21 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-10-04 23:13:41 -0300
commitbf0370c04555ba550b52a3c201ffb0e065f60aa4 (patch)
treec551bcbc62da944b086dbdca505b8646a13ed860 /pkgs/desktops/enlightenment/efl
parentec54c0989c52ca415a930297e7abeec97ff6e8b1 (diff)
enlightenment.efl: fix license
Diffstat (limited to 'pkgs/desktops/enlightenment/efl')
-rw-r--r--pkgs/desktops/enlightenment/efl/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/desktops/enlightenment/efl/default.nix b/pkgs/desktops/enlightenment/efl/default.nix
index 6c981e9c93b08..f6cf36a19bce7 100644
--- a/pkgs/desktops/enlightenment/efl/default.nix
+++ b/pkgs/desktops/enlightenment/efl/default.nix
@@ -197,11 +197,11 @@ stdenv.mkDerivation rec {
     patchelf --add-needed ${libsndfile.out}/lib/libsndfile.so $out/lib/libecore_audio.so
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Enlightenment foundation libraries";
     homepage = "https://enlightenment.org/";
-    license = stdenv.lib.licenses.lgpl3;
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
+    license = with licenses; [ bsd2 lgpl2Only licenses.zlib ];
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
   };
 }