2017-12-18 14:43:00 -08:00
|
|
|
{ stdenv, intltool, fetchurl, python3
|
2017-10-04 14:50:14 -07:00
|
|
|
, pkgconfig, gtk3, glib, gobjectIntrospection
|
|
|
|
, wrapGAppsHook, itstool, libxml2, docbook_xsl
|
|
|
|
, gnome3, gdk_pixbuf, libxslt }:
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 12:07:20 -08:00
|
|
|
name = "glade-${version}";
|
2018-03-12 18:03:18 -07:00
|
|
|
version = "3.22.0";
|
2018-02-25 12:07:20 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/glade/${gnome3.versionBranch version}/${name}.tar.xz";
|
2018-03-12 18:03:18 -07:00
|
|
|
sha256 = "1j7kpy4jisz4nkd3yb5af4vd4bapyqchvp2gvq6ypfw3b0x88rkc";
|
2018-02-25 12:07:20 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "glade"; attrPath = "gnome3.glade"; };
|
|
|
|
};
|
2016-09-18 12:35:23 -07:00
|
|
|
|
2017-11-05 08:52:09 -08:00
|
|
|
nativeBuildInputs = [
|
2017-10-04 14:50:14 -07:00
|
|
|
pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt gobjectIntrospection
|
2017-11-05 08:52:09 -08:00
|
|
|
];
|
2017-12-18 14:43:00 -08:00
|
|
|
buildInputs = [
|
|
|
|
gtk3 glib libxml2 python3 python3.pkgs.pygobject3
|
2018-02-24 18:23:58 -08:00
|
|
|
gnome3.gsettings-desktop-schemas
|
2017-12-18 14:43:00 -08:00
|
|
|
gdk_pixbuf gnome3.defaultIconTheme
|
|
|
|
];
|
2016-09-18 12:35:23 -07: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;
|
|
|
|
};
|
|
|
|
}
|