aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/misc/orca/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/misc/orca/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/misc/orca/default.nix13
1 files changed, 4 insertions, 9 deletions
diff --git a/nixpkgs/pkgs/applications/misc/orca/default.nix b/nixpkgs/pkgs/applications/misc/orca/default.nix
index 1a8d5b76fe3..4009bbb6da1 100644
--- a/nixpkgs/pkgs/applications/misc/orca/default.nix
+++ b/nixpkgs/pkgs/applications/misc/orca/default.nix
@@ -1,6 +1,6 @@
{ stdenv, pkgconfig, fetchurl, buildPythonApplication
, autoreconfHook, wrapGAppsHook, gobject-introspection
-, intltool, yelp-tools, itstool, libxmlxx3
+, gettext, yelp-tools, itstool, libxmlxx3
, python, pygobject3, gtk3, gnome3, substituteAll, hicolor-icon-theme
, at-spi2-atk, at-spi2-core, pyatspi, dbus, dbus-python, pyxdg
, xkbcomp, procps, lsof, coreutils, gsettings-desktop-schemas
@@ -9,13 +9,13 @@
buildPythonApplication rec {
pname = "orca";
- version = "3.32.0";
+ version = "3.34.0";
format = "other";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
- sha256 = "05jqzlg0f1x53hyl0l9282ynmw37159g6dsbrid12b7sjs12cc1i";
+ sha256 = "10h258cprsxzb2hz9wqrkzv1yrsm19ws46l6fsnspywza5wq0z4p";
};
patches = [
@@ -30,7 +30,7 @@ buildPythonApplication rec {
nativeBuildInputs = [
autoreconfHook wrapGAppsHook pkgconfig libxmlxx3
- intltool yelp-tools itstool gobject-introspection
+ gettext yelp-tools itstool gobject-introspection
hicolor-icon-theme # setup-hook
];
@@ -45,11 +45,6 @@ buildPythonApplication rec {
gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
];
- # Run intltoolize to create po/Makefile.in.in
- preConfigure = ''
- intltoolize
- '';
-
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;