2005-02-27 00:45:19 +01:00
|
|
|
{input, stdenv, fetchurl, pkgconfig, gtk, libxml2}:
|
2004-01-21 10:34:19 +01:00
|
|
|
|
2004-03-29 12:25:25 +02:00
|
|
|
assert pkgconfig != null && gtk != null && libxml2 != null;
|
2004-01-21 10:34:19 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2005-02-27 00:45:19 +01:00
|
|
|
inherit (input) name src;
|
2004-04-01 21:11:59 +02:00
|
|
|
buildInputs = [pkgconfig];
|
|
|
|
propagatedBuildInputs = [gtk libxml2];
|
2009-01-29 22:24:15 +01:00
|
|
|
|
|
|
|
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/;
|
|
|
|
};
|
2004-01-21 10:34:19 +01:00
|
|
|
}
|