nixpkgs/pkgs/desktops/gnome-3/apps/glade/default.nix

28 lines
796 B
Nix
Raw Normal View History

2017-12-18 22:43:00 +00:00
{ stdenv, intltool, fetchurl, python3
2017-10-04 21:50:14 +00:00
, pkgconfig, gtk3, glib, gobjectIntrospection
, wrapGAppsHook, itstool, libxml2, docbook_xsl
, gnome3, gdk_pixbuf, libxslt }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
nativeBuildInputs = [
2017-10-04 21:50:14 +00:00
pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt gobjectIntrospection
];
2017-12-18 22:43:00 +00:00
buildInputs = [
gtk3 glib libxml2 python3 python3.pkgs.pygobject3
gnome3.gsettings-desktop-schemas
2017-12-18 22:43:00 +00:00
gdk_pixbuf gnome3.defaultIconTheme
];
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;
};
}