From 7da93ed73833388cc071af463e49cfb3e762d726 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 29 Jan 2009 21:24:15 +0000 Subject: [PATCH] libglade: Add meta-information. svn path=/nixpkgs/trunk/; revision=13912 --- pkgs/desktops/gnome/libglade.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pkgs/desktops/gnome/libglade.nix b/pkgs/desktops/gnome/libglade.nix index 2719379359c..0377c07c0f5 100644 --- a/pkgs/desktops/gnome/libglade.nix +++ b/pkgs/desktops/gnome/libglade.nix @@ -6,4 +6,27 @@ stdenv.mkDerivation { inherit (input) name src; buildInputs = [pkgconfig]; propagatedBuildInputs = [gtk libxml2]; + + meta = { + description = "Glade, a User Interface Designer for GTK+ and GNOME"; + + longDescription = '' + Glade is a RAD tool to enable quick & easy development of user + interfaces for the GTK+ toolkit and the GNOME desktop + environment, released under the GNU GPL License. + + The user interfaces designed in Glade are saved as XML, and by + using the libglade library these can be loaded by applications + dynamically as needed. + + By using libglade, Glade XML files can be used in numerous + programming languages including C, C++, Java, Perl, Python, C#, + Pike, Ruby, Haskell, Objective Caml and Scheme. Adding support + for other languages is easy too. + ''; + + license = "LGPLv2+"; + + homepage = http://glade.gnome.org/; + }; }