From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42638) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7MyN-0006FK-7O for guix-patches@gnu.org; Mon, 09 Sep 2019 12:57:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i7MyM-0006Sa-2i for guix-patches@gnu.org; Mon, 09 Sep 2019 12:57:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:59900) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i7MyL-0006SW-Va for guix-patches@gnu.org; Mon, 09 Sep 2019 12:57:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i7MyL-0003Kz-Rx for guix-patches@gnu.org; Mon, 09 Sep 2019 12:57:01 -0400 Subject: [bug#37358] Add emacs-doom-themes Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42585) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7My6-0005px-8e for guix-patches@gnu.org; Mon, 09 Sep 2019 12:56:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i7My4-0006Bh-Un for guix-patches@gnu.org; Mon, 09 Sep 2019 12:56:45 -0400 Received: from sonic305-20.consmr.mail.ir2.yahoo.com ([77.238.177.82]:38505) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i7My4-0006AM-NZ for guix-patches@gnu.org; Mon, 09 Sep 2019 12:56:44 -0400 Date: Mon, 09 Sep 2019 18:56:15 +0200 Message-ID: <87d0g9tnm8.fsf@yahoo.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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" Reply-to: Tim Gesthuizen via Guix-patches From: Tim Gesthuizen via Guix-patches via To: 37358@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, I packaged emacs-doom-themes. It would be nice if it could be included into Guix. It would be nice if someone could point out a nicer way to handle the nested directories. Tim. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-emacs-doom-themes.patch >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. --- gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f3de24d825..daf3099328 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18200,3 +18200,28 @@ You can customize: @code{tao-theme-scale-fn}, that returns 16 2-digit numbers; @code{tao-theme-scale-filter-fn}, for edge filter; and @code{tao-theme-use-height}.") (license license:gpl3+)))) + +(define-public emacs-doom-themes + (package + (name "emacs-doom-themes") + (version "2.1.6") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hlissner/emacs-doom-themes.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 "042pzcdhxi2z07jcscgjbaki9nrrm0cbgbbrnymd1r4q8ckkn8l9")))) + (build-system emacs-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack + 'move-themes + (lambda _ + (copy-recursively "themes/" ".")))))) + (synopsis "Wide collection of color themes for emacs") + (description "emacs-doom-themes contains numerous popular color themes for +emacs that integrate with major modes like org-mode.") + (home-page "https://github.com/hlissner/emacs-doom-themes") + (license license:expat))) -- 2.23.0 --=-=-=--