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

26 lines
792 B
Nix
Raw Normal View History

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 }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
nativeBuildInputs = [
2017-10-04 22:50:14 +01:00
pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt gobjectIntrospection
];
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 ];
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;
};
}