Merge pull request #78488 from mothsART/bugfix/guake-locale

correction on Guake i18n : guake use C locales (not gettext directly)
This commit is contained in:
Sandro 2020-12-08 04:28:28 +01:00 committed by GitHub
commit cd924f8fdc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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