summary refs log tree commit diff
path: root/pkgs/development/libraries/libui
diff options
context:
space:
mode:
authorLeon Schuermann <leon.git@is.currently.online>2018-10-11 14:28:08 +0200
committerLeon Schuermann <leon.git@is.currently.online>2018-10-11 14:28:08 +0200
commit55c736cd78440ec7b8b7810eff3b7e2e0e81531f (patch)
treeba2bc895ce3c2d8e6c8adbddfcb70e72c302d153 /pkgs/development/libraries/libui
parenta174f3ea97bc50bbb103054002e004f74b4007e8 (diff)
downloadnixpkgs-55c736cd78440ec7b8b7810eff3b7e2e0e81531f.tar
nixpkgs-55c736cd78440ec7b8b7810eff3b7e2e0e81531f.tar.gz
nixpkgs-55c736cd78440ec7b8b7810eff3b7e2e0e81531f.tar.bz2
nixpkgs-55c736cd78440ec7b8b7810eff3b7e2e0e81531f.tar.lz
nixpkgs-55c736cd78440ec7b8b7810eff3b7e2e0e81531f.tar.xz
nixpkgs-55c736cd78440ec7b8b7810eff3b7e2e0e81531f.tar.zst
nixpkgs-55c736cd78440ec7b8b7810eff3b7e2e0e81531f.zip
libui: add license meta
Diffstat (limited to 'pkgs/development/libraries/libui')
-rw-r--r--pkgs/development/libraries/libui/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libui/default.nix b/pkgs/development/libraries/libui/default.nix
index b1e6938a149..9eb2fe04fe6 100644
--- a/pkgs/development/libraries/libui/default.nix
+++ b/pkgs/development/libraries/libui/default.nix
@@ -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;
     };
   }