From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id cIRmJymOpl/BbgAA0tVLHw (envelope-from ) for ; Sat, 07 Nov 2020 12:08:09 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id oLs1IymOpl+pYQAAbx9fmQ (envelope-from ) for ; Sat, 07 Nov 2020 12:08:09 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 50AD59403E8 for ; Sat, 7 Nov 2020 12:08:09 +0000 (UTC) Received: from localhost ([::1]:58928 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kbN0q-00055Z-5a for larch@yhetil.org; Sat, 07 Nov 2020 07:08:08 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:47444) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kbN0h-00055Q-FX for guix-devel@gnu.org; Sat, 07 Nov 2020 07:07:59 -0500 Received: from mail1.g12.pair.com ([66.39.4.99]:24102) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kbN0f-0005Fm-KS for guix-devel@gnu.org; Sat, 07 Nov 2020 07:07:59 -0500 Received: from mail1.g12.pair.com (localhost [127.0.0.1]) by mail1.g12.pair.com (Postfix) with ESMTP id 6839D73048; Sat, 7 Nov 2020 07:07:56 -0500 (EST) Received: from guix.local (w135107.ppp.asahi-net.or.jp [121.1.135.107]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail1.g12.pair.com (Postfix) with ESMTPSA id 9C0707307A; Sat, 7 Nov 2020 07:07:55 -0500 (EST) Message-ID: Subject: Re: Japanese Input wont't without manually adding environmental variables? From: yasu To: Leo Prikler Date: Sat, 07 Nov 2020 21:07:53 +0900 In-Reply-To: <01bb3fc700006f6edbc1919f5cd81484410a9e74.camel@student.tugraz.at> References: <01bb3fc700006f6edbc1919f5cd81484410a9e74.camel@student.tugraz.at> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Received-SPF: none client-ip=66.39.4.99; envelope-from=yasu@yasuaki.com; helo=mail1.g12.pair.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/11/07 07:07:56 X-ACL-Warn: Detected OS = FreeBSD 9.x or newer [fuzzy] X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: guix-devel@gnu.org Errors-To: guix-devel-bounces+larch=yhetil.org@gnu.org Sender: "Guix-devel" X-Scanner: ns3122888.ip-94-23-21.eu Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of guix-devel-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-devel-bounces@gnu.org X-Spam-Score: -0.01 X-TUID: W3Wojw7+TySQ Hi Leo, Oh this looks like like exactly what I need!! https://issues.guix.info/44354 Very much looking forward to this being picked up!! Thank you so much! -Yasu On Sat, 2020-11-07 at 10:23 +0100, Leo Prikler wrote: > Hello, yasu > > I recently submitted #44354, which would set GUIX_GTK*_IM_MODULE_FILE > from the system configuration. Once this patch is merged, you should > be able to add ibus and ibus-anthy to your operating-system packages > and have them picked up from there by gnome. > > Note, that this patch would as it is currently likely only set > GUIX_GTK3_IM_MODULE_FILE, because the gnome package does not contain > anything linked against gtk+-2. If that is a concern, you can add an > application that does to it. Mine currently looks like this: > > ``` > (package > (inherit gnome) > (propagated-inputs > `(,@(package-propagated-inputs gnome) > ;; IBus > ("ibus" ,ibus) > ("ibus-anthy" ,ibus-anthy) > ;; World > ("dconf-editor" ,dconf-editor) > ("evolution" ,evolution) > ("evolution-data-server" ,evolution-data-server) > ("gitg" ,gitg) > ("gnome-tweaks" ,gnome-tweaks) > ("polari" ,polari) > ("seahorse" ,seahorse)))) > ``` > > [As you can see, just ibus and a few more Gnome packages, but none > using Gtk+ 2.] > > Best regards, > Leo >