aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/wxwidgets
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2017-04-23 15:25:23 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2017-04-23 15:25:23 -0500
commit3cfdaa4b2b15292fdab11499529c622b5d4d074f (patch)
tree548d8dea481264099300d03d377c233f66ea9c94 /pkgs/development/libraries/wxwidgets
parent6f3085d5723408139100c7e7d0db54c84547c3e9 (diff)
wxwidgets: add homepage and descriptions
Update meta to make things more informative.
Diffstat (limited to 'pkgs/development/libraries/wxwidgets')
-rw-r--r--pkgs/development/libraries/wxwidgets/2.8/default.nix5
-rw-r--r--pkgs/development/libraries/wxwidgets/2.9/default.nix3
-rw-r--r--pkgs/development/libraries/wxwidgets/3.0/default.nix3
-rw-r--r--pkgs/development/libraries/wxwidgets/3.0/mac.nix3
4 files changed, 13 insertions, 1 deletions
diff --git a/pkgs/development/libraries/wxwidgets/2.8/default.nix b/pkgs/development/libraries/wxwidgets/2.8/default.nix
index e84a2b4c18ed..15db4386e012 100644
--- a/pkgs/development/libraries/wxwidgets/2.8/default.nix
+++ b/pkgs/development/libraries/wxwidgets/2.8/default.nix
@@ -65,7 +65,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = {
- platforms = stdenv.lib.platforms.linux;
+ platforms = platforms.linux;
license = licenses.wxWindows;
+ homepage = "https://www.wxwidgets.org/";
+ description = "a C++ library that lets developers create applications for Windows, Mac OS X, Linux and other platforms with a single code base";
+ longDescription = "wxWidgets gives you a single, easy-to-use API for writing GUI applications on multiple platforms that still utilize the native platform's controls and utilities. Link with the appropriate library for your platform and compiler, and your application will adopt the look and feel appropriate to that platform. On top of great GUI functionality, wxWidgets gives you: online help, network programming, streams, clipboard and drag and drop, multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more.";
};
}
diff --git a/pkgs/development/libraries/wxwidgets/2.9/default.nix b/pkgs/development/libraries/wxwidgets/2.9/default.nix
index fb6c418fb9bb..af9dde75cf42 100644
--- a/pkgs/development/libraries/wxwidgets/2.9/default.nix
+++ b/pkgs/development/libraries/wxwidgets/2.9/default.nix
@@ -69,5 +69,8 @@ stdenv.mkDerivation {
meta = {
platforms = with platforms; darwin ++ linux;
license = licenses.wxWindows;
+ homepage = "https://www.wxwidgets.org/";
+ description = "a C++ library that lets developers create applications for Windows, Mac OS X, Linux and other platforms with a single code base";
+ longDescription = "wxWidgets gives you a single, easy-to-use API for writing GUI applications on multiple platforms that still utilize the native platform's controls and utilities. Link with the appropriate library for your platform and compiler, and your application will adopt the look and feel appropriate to that platform. On top of great GUI functionality, wxWidgets gives you: online help, network programming, streams, clipboard and drag and drop, multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more.";
};
}
diff --git a/pkgs/development/libraries/wxwidgets/3.0/default.nix b/pkgs/development/libraries/wxwidgets/3.0/default.nix
index 4044f546e3d5..5b1e0fc067c7 100644
--- a/pkgs/development/libraries/wxwidgets/3.0/default.nix
+++ b/pkgs/development/libraries/wxwidgets/3.0/default.nix
@@ -80,5 +80,8 @@ stdenv.mkDerivation {
meta = {
platforms = with platforms; darwin ++ linux;
license = licenses.wxWindows;
+ homepage = "https://www.wxwidgets.org/";
+ description = "a C++ library that lets developers create applications for Windows, Mac OS X, Linux and other platforms with a single code base";
+ longDescription = "wxWidgets gives you a single, easy-to-use API for writing GUI applications on multiple platforms that still utilize the native platform's controls and utilities. Link with the appropriate library for your platform and compiler, and your application will adopt the look and feel appropriate to that platform. On top of great GUI functionality, wxWidgets gives you: online help, network programming, streams, clipboard and drag and drop, multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more.";
};
}
diff --git a/pkgs/development/libraries/wxwidgets/3.0/mac.nix b/pkgs/development/libraries/wxwidgets/3.0/mac.nix
index 0b5b4832b2a3..fc747268cab8 100644
--- a/pkgs/development/libraries/wxwidgets/3.0/mac.nix
+++ b/pkgs/development/libraries/wxwidgets/3.0/mac.nix
@@ -102,5 +102,8 @@ stdenv.mkDerivation rec {
platforms = platforms.darwin;
license = licenses.wxWindows;
maintainers = [ maintainers.lnl7 ];
+ homepage = "https://www.wxwidgets.org/";
+ description = "a C++ library that lets developers create applications for Windows, Mac OS X, Linux and other platforms with a single code base";
+ longDescription = "wxWidgets gives you a single, easy-to-use API for writing GUI applications on multiple platforms that still utilize the native platform's controls and utilities. Link with the appropriate library for your platform and compiler, and your application will adopt the look and feel appropriate to that platform. On top of great GUI functionality, wxWidgets gives you: online help, network programming, streams, clipboard and drag and drop, multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more.";
};
}