2018-12-02 12:41:15 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook, gobject-introspection
|
2018-02-25 03:23:58 +01:00
|
|
|
, itstool, libxml2, python3Packages, at-spi2-core
|
2019-03-03 19:35:30 +01:00
|
|
|
, dbus, gettext, libwnck3 }:
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-21 02:57:59 +01:00
|
|
|
name = "accerciser-${version}";
|
2019-04-13 14:29:15 +02:00
|
|
|
version = "3.32.1";
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2018-02-21 02:57:59 +01:00
|
|
|
src = fetchurl {
|
2018-10-05 02:12:11 +02:00
|
|
|
url = "mirror://gnome/sources/accerciser/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-04-13 14:29:15 +02:00
|
|
|
sha256 = "0afzhbig5yw87zyfmid61368jj8l6i7k8gs29x0hv65fz4yiv4h4";
|
2018-02-21 02:57:59 +01:00
|
|
|
};
|
|
|
|
|
2018-03-21 10:57:15 +01:00
|
|
|
nativeBuildInputs = [
|
2019-03-03 19:35:30 +01:00
|
|
|
pkgconfig wrapGAppsHook itstool gettext
|
2018-12-02 12:41:15 +01:00
|
|
|
gobject-introspection # For setup hook
|
2018-03-21 10:57:15 +01:00
|
|
|
];
|
2016-09-18 21:35:23 +02:00
|
|
|
buildInputs = [
|
2018-02-21 02:57:59 +01:00
|
|
|
gtk3 libxml2 python3Packages.python python3Packages.pyatspi
|
2016-09-18 21:35:23 +02:00
|
|
|
python3Packages.pygobject3 python3Packages.ipython
|
2019-02-13 22:47:50 +01:00
|
|
|
at-spi2-core dbus libwnck3 gnome3.adwaita-icon-theme
|
2016-09-18 21:35:23 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
wrapPrefixVariables = [ "PYTHONPATH" ];
|
|
|
|
|
2018-02-21 02:57:59 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "accerciser";
|
|
|
|
attrPath = "gnome3.accerciser";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 21:35:23 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Accerciser;
|
|
|
|
description = "Interactive Python accessibility explorer";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|