From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55573) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7oF1-0003XB-FL for guix-patches@gnu.org; Tue, 10 Sep 2019 18:04:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i7oF0-00008E-JT for guix-patches@gnu.org; Tue, 10 Sep 2019 18:04:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:32963) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i7oF0-00007z-GP for guix-patches@gnu.org; Tue, 10 Sep 2019 18:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i7oF0-00064c-A1 for guix-patches@gnu.org; Tue, 10 Sep 2019 18:04:02 -0400 Subject: [bug#37358] Add emacs-doom-themes Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87d0g9tnm8.fsf@yahoo.de> Date: Wed, 11 Sep 2019 00:03:29 +0200 In-Reply-To: <87d0g9tnm8.fsf@yahoo.de> (Tim Gesthuizen's message of "Mon, 09 Sep 2019 18:56:15 +0200") Message-ID: <875zlzzu4u.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Tim Gesthuizen Cc: 37358@debbugs.gnu.org Hello, Tim Gesthuizen skribis: >>>From 3fc45dd06f11523f2f7494bcd69790a879635ae4 Mon Sep 17 00:00:00 2001 > From: Tim Gesthuizen > Date: Mon, 9 Sep 2019 18:48:31 +0200 > Subject: [PATCH] gnu: Add emacs-doom-themes > > * gnu/packages/emacs-xyz.scm (emacs-doom-themes): New variable. [...] > + (modify-phases %standard-phases > + (add-after 'unpack > + 'move-themes > + (lambda _ > + (copy-recursively "themes/" ".")))))) Why is this needed? I could suggest: (for-each (lambda (file) (rename-file file (string-append (dirname file) "/.."))) (find-files themes)) =E2=80=A6 which would really move files, but it also more verbose. WDYT? Thank you, Ludo=E2=80=99.