From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id gL9EOkxvcF91WwAA0tVLHw (envelope-from ) for ; Sun, 27 Sep 2020 10:54:04 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id 0C9WNkxvcF+BAwAA1q6Kng (envelope-from ) for ; Sun, 27 Sep 2020 10:54:04 +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 B2A38940308 for ; Sun, 27 Sep 2020 10:54:04 +0000 (UTC) Received: from localhost ([::1]:33144 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kMUJf-0002WH-Nx for larch@yhetil.org; Sun, 27 Sep 2020 06:54:03 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39828) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kMUJR-0002Ux-F4 for guix-devel@gnu.org; Sun, 27 Sep 2020 06:53:49 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:46497) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kMUJO-0005ux-F1 for guix-devel@gnu.org; Sun, 27 Sep 2020 06:53:49 -0400 X-Originating-IP: 90.92.160.122 Received: from bababa (lfbn-idf2-1-1094-122.w90-92.abo.wanadoo.fr [90.92.160.122]) (Authenticated sender: mail@ambrevar.xyz) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id E4DF560003; Sun, 27 Sep 2020 10:53:39 +0000 (UTC) From: Pierre Neidhardt To: Mark H Weaver , Giovanni Biscuolo , Guix Devel Subject: Re: emacs-lucid (was Re: Emacs closure at ~900MB?) In-Reply-To: <87imbz7mq2.fsf@ambrevar.xyz> References: <86wo0mnjs3.fsf@gmail.com> <87d02e3v61.fsf@ambrevar.xyz> <87k0wjt774.fsf@roquette.i-did-not-set--mail-host-address--so-tickle-me> <87h7rk8pmz.fsf@netris.org> <877dsgs8ch.fsf@ambrevar.xyz> <871rio8c0t.fsf@netris.org> <87imbz7mq2.fsf@ambrevar.xyz> Date: Sun, 27 Sep 2020 12:53:38 +0200 Message-ID: <878scvwkwd.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Received-SPF: pass client-ip=217.70.183.195; envelope-from=mail@ambrevar.xyz; helo=relay3-d.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/09/27 06:53:40 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -13 X-Spam_score: -1.4 X-Spam_bar: - X-Spam_report: (-1.4 / 5.0 requ) BAYES_00=-1.9, FROM_SUSPICIOUS_NTLD=0.498, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_PDS_OTHER_BAD_TLD=0.01 autolearn=no 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: , Errors-To: guix-devel-bounces+larch=yhetil.org@gnu.org Sender: "Guix-devel" X-Scanner: scn0 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.61 X-TUID: lANHQxVneUz2 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Just tested, EXWM works with emacs-no-x-toolkit! So I suggest we add the following packages: =2D-8<---------------cut here---------------start------------->8--- (define-public emacs-no-x-toolkit-xelb (package (inherit emacs-xelb) (name "emacs-no-x-toolkit-xelb") (arguments (substitute-keyword-arguments (package-arguments emacs-xelb) ((#:emacs emacs) `,emacs-no-x-toolkit))))) (define-public emacs-no-x-toolkit-exwm=20=20=20=20=20=20=20=20=20 (package (inherit emacs-exwm) (name "emacs-no-x-toolkit-exwm") (synopsis "Emacs X window manager (without X toolkit)") (propagated-inputs `(("emacs-no-x-toolkit-xelb" ,emacs-no-x-toolkit-xelb))) (arguments (substitute-keyword-arguments (package-arguments emacs-exwm) ((#:emacs emacs) `,emacs-no-x-toolkit))))) =2D-8<---------------cut here---------------end--------------->8--- Thoughts? =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFGBAEBCAAwFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl9wbzISHG1haWxAYW1i cmV2YXIueHl6AAoJEJvc9Jeku8x/jOwIAKGgLHAyPGwZk9ZKjM2dy5x6Vdvhxg3m 2hD8XcDU/UhMKGDVucFh7CU9Ni6RsjlKZMsXfX3gTdwc5M/48fXOEzxn2XUxOMgG UIb9TgWFWgOAdBFScIkXNfUfhxbfGJVRmnPddTN+Ww6bLW3oM0apiWLdDK18BuLd BuEmGS30O+XWUdEcVelfvtfDhrXjhUrUCPJD5RENhZngArI7mmNvr+NT3f8pZuM8 Lc7/fKghmZegeidGKb4xsc47cUPkTTocfwh2fHGYyGn8Tcmwr7Du+RD4MVRJEIeD 7C9WjqDKWUcZITR1oTyBk4blyarLbbo2PSQnWKf9ONBnRt2ikAPbBEo= =lv4T -----END PGP SIGNATURE----- --=-=-=--