From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35159) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1deMnj-0003Kv-DY for guix-patches@gnu.org; Sun, 06 Aug 2017 10:45:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1deMnf-0004Be-I7 for guix-patches@gnu.org; Sun, 06 Aug 2017 10:45:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42174) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1deMnf-0004BS-EJ for guix-patches@gnu.org; Sun, 06 Aug 2017 10:45:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1deMne-00081o-11 for guix-patches@gnu.org; Sun, 06 Aug 2017 10:45:02 -0400 Subject: [bug#27984] emacs-base16-theme Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35061) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1deMml-00030b-ST for guix-patches@gnu.org; Sun, 06 Aug 2017 10:44:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1deMmi-00042C-4D for guix-patches@gnu.org; Sun, 06 Aug 2017 10:44:07 -0400 Received: from aibo.runbox.com ([91.220.196.211]:38626) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1deMmh-00041q-ST for guix-patches@gnu.org; Sun, 06 Aug 2017 10:44:04 -0400 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1deMmd-0002Zq-5B for guix-patches@gnu.org; Sun, 06 Aug 2017 16:43:59 +0200 Received: from [163.172.151.250] (helo=localhost) by mailfront10.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1deMmO-00086T-IC for guix-patches@gnu.org; Sun, 06 Aug 2017 16:43:44 +0200 Date: Sun, 6 Aug 2017 14:43:42 +0000 From: ng0 Message-ID: <20170806144342.4b7ejzszuhbvsnjg@abyayala> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="bm5jwxthcn6su5cd" Content-Disposition: inline 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: 27984@debbugs.gnu.org --bm5jwxthcn6su5cd Content-Type: multipart/mixed; boundary="rwwcp6myb6sbfi2z" Content-Disposition: inline --rwwcp6myb6sbfi2z Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I used melpa stable because the source on github only generates the themes it detects the environment could use (which is 1 out of a huge themepark). --=20 ng0 GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 GnuPG: https://n0is.noblogs.org/my-keys https://www.infotropique.org https://krosos.org --rwwcp6myb6sbfi2z Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-emacs-base16-theme.patch" Content-Transfer-Encoding: quoted-printable =46rom 04ebf7b32e6176e70458e95b4ae2b2adee6676c5 Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Sun, 6 Aug 2017 14:40:37 +0000 Subject: [PATCH] gnu: Add emacs-base16-theme. * gnu/packages/emacs.scm (emacs-base16-theme): New variable. --- gnu/packages/emacs.scm | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 4aa713346..31ad6fe74 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -12,7 +12,7 @@ ;;; Copyright =C2=A9 2016 David Thompson ;;; Copyright =C2=A9 2016 Matthew Jordan ;;; Copyright =C2=A9 2016, 2017 Roel Janssen -;;; Copyright =C2=A9 2016, 2017 ng0 +;;; Copyright =C2=A9 2016, 2017 ng0 ;;; Copyright =C2=A9 2016 Alex Griffin ;;; Copyright =C2=A9 2016, 2017 Nicolas Goaziou ;;; Copyright =C2=A9 2016 Alex Vong @@ -2603,6 +2603,27 @@ transparent background. If you load it from a GUI, = it will default to a dark background.") (license license:gpl3+))) =20 +(define-public emacs-base16-theme + (package + (name "emacs-base16-theme") + (version "2.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://stable.melpa.org/packages/base16-theme= -" + version ".tar")) + (sha256 + (base32 + "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj")))) + (build-system emacs-build-system) + (home-page "https://github.com/belak/base16-emacs") + (synopsis "base16 color themes for Emacs") + (description + "Base16 provides carefully chosen syntax highlighting and a default s= et +of sixteen colors suitable for a wide range of applications. Base16 is no= t a +single theme but a set of guidelines with numerous implementations.") + (license license:expat))) + (define-public emacs-smartparens (package (name "emacs-smartparens") --=20 2.13.4 --rwwcp6myb6sbfi2z-- --bm5jwxthcn6su5cd Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEqIyK3RKYKNfqwC5S4i+bv+40hYgFAlmHKx4ACgkQ4i+bv+40 hYiebxAAkmB+izxf3IHqZ4xkJ6LjlrNg4t3vufEm8pRME6ep49fRcEyXmL3Y+fSA rcxM8gIeu18XtlFM7v4+3JVkNuPxGfOhENS8bEWJ9B53HrVO8gehUUcnUJcei2qu d1HXymkGoZvFz/scSjMKLzehdUA+z5IGwXgqep8CBk/jOPWdu0Obh6/U5chtOXCX iIVviAlgCBkbg2Fa25ccdaH0lmjrt1m7JhoWDt/x7Opj15Zy5OHsGaXj3fV9cGRu RQ0SFL34Cknsd6ed9Rmzu2pcdgRnLWpFRwwEP9lB6fCI6aj1BVjwCbeLv+ttKa5X bX/R8wm2YcR7kjBDqf0E5m0IE7A0dhzDMUea73hyo6k9q95Ncr9euiyCqvcUWB/n bPNz6BjQChsfu5e1bFLh7xxrzPztuCn0ZLMeKyWY/ghqjbUOvbNK+0gxLKXPpY1D 6X7FgSl97mu9b+M+rI7GIPvfyO6UE53A7V4ys9TswQhTbb2FnrfmjpS71cc3cbj1 DQRueq2dqSwpxoXkQwtGaKfXG15mkmwDiI7TdOmev7mL5p1vUrCrboEeFUybWPMH 63R9h1lrwNfXYQAXDzoM45cMPWhtyr1lMv9PGpHn/DjIwoXt6hAEJhTGrXvqSmiv 3ISBc5vAAX/L76oPqQg4TZ3L9oNc3TsVsE9UbuGYPXZ1YF2B3pY= =1Jnz -----END PGP SIGNATURE----- --bm5jwxthcn6su5cd--