2022-03-23 12:56:59 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2020-05-15 16:29:11 +00:00
|
|
|
, gettext
|
2020-05-15 15:30:40 +00:00
|
|
|
, fetchurl
|
|
|
|
, python3
|
2020-11-17 15:34:35 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
2020-05-15 15:30:40 +00:00
|
|
|
, pkg-config
|
|
|
|
, gtk3
|
|
|
|
, glib
|
2020-11-17 15:34:35 +00:00
|
|
|
, gjs
|
2022-10-04 01:46:19 +00:00
|
|
|
, webkitgtk_4_1
|
2020-05-15 15:30:40 +00:00
|
|
|
, gobject-introspection
|
|
|
|
, wrapGAppsHook
|
|
|
|
, itstool
|
|
|
|
, libxml2
|
|
|
|
, docbook-xsl-nons
|
2020-11-17 15:34:35 +00:00
|
|
|
, docbook_xml_dtd_42
|
2021-05-07 21:18:14 +00:00
|
|
|
, gnome
|
2020-05-15 15:30:40 +00:00
|
|
|
, gdk-pixbuf
|
|
|
|
, libxslt
|
|
|
|
, gsettings-desktop-schemas
|
|
|
|
}:
|
2016-09-18 19:35:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "glade";
|
2022-08-12 18:52:28 +00:00
|
|
|
version = "3.40.0";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-23 12:26:19 +00:00
|
|
|
url = "mirror://gnome/sources/glade/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2022-08-12 18:52:28 +00:00
|
|
|
sha256 = "McmtrqhJlyq5UXtWThmsGZd8qXdYsQntwxZwCPU+PZw=";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2017-11-05 16:52:09 +00:00
|
|
|
nativeBuildInputs = [
|
2020-11-17 15:34:35 +00:00
|
|
|
meson
|
|
|
|
ninja
|
2020-05-15 15:30:40 +00:00
|
|
|
pkg-config
|
2020-05-15 16:29:11 +00:00
|
|
|
gettext
|
2020-05-15 15:30:40 +00:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
docbook-xsl-nons
|
2020-11-17 15:34:35 +00:00
|
|
|
docbook_xml_dtd_42
|
2020-05-15 15:30:40 +00:00
|
|
|
libxslt
|
|
|
|
libxml2
|
|
|
|
gobject-introspection
|
2017-11-05 16:52:09 +00:00
|
|
|
];
|
2020-05-15 15:30:40 +00:00
|
|
|
|
2017-12-18 22:43:00 +00:00
|
|
|
buildInputs = [
|
2020-05-15 15:30:40 +00:00
|
|
|
gtk3
|
|
|
|
glib
|
2020-11-17 15:34:35 +00:00
|
|
|
gjs
|
2022-10-04 01:46:19 +00:00
|
|
|
webkitgtk_4_1
|
2020-05-15 15:30:40 +00:00
|
|
|
libxml2
|
|
|
|
python3
|
|
|
|
python3.pkgs.pygobject3
|
2019-04-17 00:38:26 +00:00
|
|
|
gsettings-desktop-schemas
|
2020-05-15 15:30:40 +00:00
|
|
|
gdk-pixbuf
|
2021-05-07 21:18:14 +00:00
|
|
|
gnome.adwaita-icon-theme
|
2017-12-18 22:43:00 +00:00
|
|
|
];
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2022-10-04 01:46:19 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace meson.build \
|
|
|
|
--replace 'webkit2gtk-4.0' 'webkit2gtk-4.1'
|
|
|
|
'';
|
|
|
|
|
2020-05-15 15:30:40 +00:00
|
|
|
passthru = {
|
2021-05-07 21:18:14 +00:00
|
|
|
updateScript = gnome.updateScript {
|
2020-05-15 15:30:40 +00:00
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-28 16:31:55 +00:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Glade";
|
2019-09-03 22:49:40 +00:00
|
|
|
description = "User interface designer for GTK applications";
|
2020-04-01 12:40:51 +00:00
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 19:35:23 +00:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|