2017-12-03 00:51:52 +00:00
|
|
|
{ stdenv, intltool, fetchurl, python
|
2017-10-04 22:50:14 +01:00
|
|
|
, pkgconfig, gtk3, glib, gobjectIntrospection
|
|
|
|
, wrapGAppsHook, itstool, libxml2, docbook_xsl
|
|
|
|
, gnome3, gdk_pixbuf, libxslt }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
2017-11-05 16:52:09 +00:00
|
|
|
nativeBuildInputs = [
|
2017-10-04 22:50:14 +01:00
|
|
|
pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt gobjectIntrospection
|
2017-11-05 16:52:09 +00:00
|
|
|
];
|
2017-11-05 16:58:30 +00:00
|
|
|
buildInputs = [ gtk3 glib libxml2 python
|
|
|
|
gnome3.gsettings_desktop_schemas
|
2017-10-04 22:50:14 +01:00
|
|
|
gdk_pixbuf gnome3.defaultIconTheme ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Glade;
|
|
|
|
description = "User interface designer for GTK+ applications";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|