summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorFerry Jérémie <ferryjeremie@free.fr>2020-01-26 01:12:15 +0100
committerFerry Jérémie <ferryjeremie@free.fr>2020-11-29 14:41:27 +0100
commitfa4fc34dcde087043a0175fb023c4d5dbb65cf62 (patch)
tree5a3355617dbd8cbe6ebeb1d517da221bda2bbc65 /pkgs/applications/terminal-emulators
parent8ee7c2505f9e7019aa69c8a6313e5f2d32a69f27 (diff)
correction on Guake i18n : guake use C locales (not gettext directly)
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/guake/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/terminal-emulators/guake/default.nix b/pkgs/applications/terminal-emulators/guake/default.nix
index d403ddc8b26c..481c7255441f 100644
--- a/pkgs/applications/terminal-emulators/guake/default.nix
+++ b/pkgs/applications/terminal-emulators/guake/default.nix
@@ -1,7 +1,7 @@
{ stdenv
, fetchFromGitHub
, python3
-, gettext
+, glibcLocales
, gobject-introspection
, wrapGAppsHook
, gtk3
@@ -31,13 +31,13 @@ python3.pkgs.buildPythonApplication rec {
strictDeps = false;
nativeBuildInputs = [
- gettext
gobject-introspection
wrapGAppsHook
python3.pkgs.pip
];
buildInputs = [
+ glibcLocales
gtk3
keybinder3
libnotify
@@ -46,6 +46,8 @@ python3.pkgs.buildPythonApplication rec {
vte
];
+ makeWrapperArgs = [ "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive" ];
+
propagatedBuildInputs = with python3.pkgs; [
dbus-python
pbr