This patch replaces the environment variable "GTK_IM_MODULE" with "GUIX_GTK2_IM_MODULE_FILE" to prevent this version of GTK+ from loading input method modules for other major versions of GTK+. --- gtk+-2.24.30/gtk/gtkrc.c 2016-08-21 22:40:22.339660438 +0200 +++ gtk+-2.24.30/gtk/gtkrc.c 2016-08-23 10:11:11.080822710 +0200 @@ -439,7 +439,7 @@ gchar * gtk_rc_get_im_module_file (void) { - const gchar *var = g_getenv ("GTK_IM_MODULE_FILE"); + const gchar *var = g_getenv ("GUIX_GTK2_IM_MODULE_FILE"); gchar *result = NULL; if (var) >
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/locale.scm
AgeCommit message (Expand)Author
2022-01-14system: locale: Use only the current glibc....* gnu/system/locale.scm (%default-locale-libcs): Remove glibc-2.31. Mathieu Othacehe
2021-05-15Merge branch 'master' into core-updatesLudovic Courtès
2021-05-04locale: Remove glibc 2.29 from '%default-locale-libcs'....Having 2.29 is most likely no longer justified. Removing it reduces the closure size returned by: guix size $(guix system build gnu/system/install.scm) from 1.6G to 1.5G. * gnu/system/locale.scm (%default-locale-libcs): Remove GLIBC-2.29. Ludovic Courtès
2020-09-20gnu: glibc: Add version 2.31....* gnu/packages/base.scm (glibc-2.31): New variable. * gnu/system/locale.scm (%default-locale-libcs): Add it. Ludovic Courtès