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

38 lines
1.1 KiB
Nix
Raw Normal View History

2017-12-18 22:43:00 +00:00
{ stdenv, intltool, fetchurl, python3
, pkgconfig, gtk3, glib, gobject-introspection
2017-10-04 21:50:14 +00:00
, wrapGAppsHook, itstool, libxml2, docbook_xsl
2019-05-22 11:03:39 +00:00
, gnome3, gdk-pixbuf, libxslt, gsettings-desktop-schemas }:
stdenv.mkDerivation rec {
name = "glade-${version}";
2018-04-13 21:52:39 +00:00
version = "3.22.1";
src = fetchurl {
url = "mirror://gnome/sources/glade/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2018-04-13 21:52:39 +00:00
sha256 = "16p38xavpid51qfy0s26n0n21f9ws1w9k5s65bzh1w7ay8p9my6z";
};
passthru = {
updateScript = gnome3.updateScript { packageName = "glade"; attrPath = "gnome3.glade"; };
};
nativeBuildInputs = [
pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt gobject-introspection
];
2017-12-18 22:43:00 +00:00
buildInputs = [
gtk3 glib libxml2 python3 python3.pkgs.pygobject3
gsettings-desktop-schemas
2019-05-22 11:03:39 +00:00
gdk-pixbuf gnome3.adwaita-icon-theme
2017-12-18 22:43:00 +00: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;
};
}