correction on Guake i18n : guake use C locales (not gettext directly)
This commit is contained in:
parent
8ee7c2505f
commit
fa4fc34dcd
@ -1,7 +1,7 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, python3
|
, python3
|
||||||
, gettext
|
, glibcLocales
|
||||||
, gobject-introspection
|
, gobject-introspection
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
, gtk3
|
, gtk3
|
||||||
@ -31,13 +31,13 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
strictDeps = false;
|
strictDeps = false;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gettext
|
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
python3.pkgs.pip
|
python3.pkgs.pip
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
glibcLocales
|
||||||
gtk3
|
gtk3
|
||||||
keybinder3
|
keybinder3
|
||||||
libnotify
|
libnotify
|
||||||
@ -46,6 +46,8 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
vte
|
vte
|
||||||
];
|
];
|
||||||
|
|
||||||
|
makeWrapperArgs = [ "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive" ];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
dbus-python
|
dbus-python
|
||||||
pbr
|
pbr
|
||||||
|
Loading…
Reference in New Issue
Block a user