38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
|
{ stdenv, intltool, fetchurl, python3
|
||
|
, pkgconfig, gtk3, glib, gobject-introspection
|
||
|
, wrapGAppsHook, itstool, libxml2, docbook_xsl
|
||
|
, gnome3, gdk-pixbuf, libxslt, gsettings-desktop-schemas }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "glade";
|
||
|
version = "3.22.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://gnome/sources/glade/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||
|
sha256 = "08bayb1rrpblxf6jhhbw2n3c425w170is4l94pampldl4kmsdvzd";
|
||
|
};
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = gnome3.updateScript { packageName = "glade"; attrPath = "gnome3.glade"; };
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkgconfig intltool itstool wrapGAppsHook docbook_xsl libxslt libxml2 gobject-introspection
|
||
|
];
|
||
|
buildInputs = [
|
||
|
gtk3 glib libxml2 python3 python3.pkgs.pygobject3
|
||
|
gsettings-desktop-schemas
|
||
|
gdk-pixbuf gnome3.adwaita-icon-theme
|
||
|
];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://wiki.gnome.org/Apps/Glade";
|
||
|
description = "User interface designer for GTK applications";
|
||
|
maintainers = teams.gnome.members;
|
||
|
license = licenses.lgpl2;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|