Message ID | 87sglfen9q.fsf@librem.i-did-not-set--mail-host-address--so-tickle-me |
---|---|
State | Accepted |
Headers | show |
Series | [bug#38682] gnu: Add emacs-punpun-theme. | expand |
On 12/19/2019 8:36 PM, Alex ter Weele wrote: > Kyle Meyer <kyle@kyleam.com> writes: > >> Based on the header in punpun-common.el [*], I think this should be >> gpl3+. > Good catch, here's an updated patch. Looks good to me! I think this is ready for commit to master. I am unable to do this at this time, but if this is still open when I get home I will review it once more and push it. Thanks!
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Pushed with 5613760aa40a157eb7f6666abbe8f5a9484c8b42. Thanks :) - -- Brett M. Gilio GNU Guix, Contributor | GNU Project, Webmaster [DFC0 C7F7 9EE6 0CA7 AE55 5E19 6722 43C4 A03F 0EEE] <brettg@gnu.org> <brettg@posteo.net> -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEE38DH957mDKeuVV4ZZyJDxKA/Du4FAl39p3YACgkQZyJDxKA/ Du6B2Q//eikAQdmnKZkd1AahVVJZ+SZ8EOhuVIU9+NLxwEPehJuY+z3Tuxlm1luK t762vTPhBL3lSju+YT/xZeRSDoIOs5NBVA+YYvYTeYveYZ7JutU1b0ueMz6872hQ sY1VULfmkBBiV2ayOPckWr09M9Fop+jaExBzgdsXiBmXknQ6W4lh3y4jSNuar7M6 eSHrsMyuO8HP0tF1HskN05508U+Axx/ihhW/sfQu18uK4A7REBAasVchSr1t5vpL 2012jCNrEFGCvYGi8W7UliE5uqELdS5DkCLxJ0DhuwH/7NnSN4QLtFi4VPE1qy6Q BQb3NAe32hTDr08fSVoc30tP1JtLRl3p9Et8X4vAF/sVshQUPjdQAn1HzCBnwO7x onqu2Qq9lXWyKtQMLBpq5F+zJxWL6FZkmFZy0v2xud53MTXvyB2t7ocznsCt+rX0 DvzGuapfSVresxMdXkZu/geKZyjyvUuNSPX/3oL8AMzqg5S8CQ8dDxMqDBUFe9C4 aEjNN2bvda48tSB52eu+IPT39rOaxiZhNxz3zzxP772y6k5BsLYFB58jzycuNMhU OXkcF2E2UUZ5XfD42I6y9W6e26UoSuzkttoHzw69+eJCsQ7D02sbPo3gaYxzeFdS MNjwLMMmBNRC7W205rdBwQoQa928F3x/V3EIlk+P0nSwes/sb6w= =+XDB -----END PGP SIGNATURE-----
From 965546778c1824eb7efe90c02ffc6878a1ed907e Mon Sep 17 00:00:00 2001 From: Alex ter Weele <alex.ter.weele@gmail.com> Date: Thu, 19 Dec 2019 20:43:34 -0500 Subject: [PATCH] gnu: Add emacs-punpun-theme. * gnu/packages/emacs-xyz.scm (emacs-punpun-theme): 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 8ff7a23f51..45636f87f9 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -19876,6 +19876,31 @@ is cast on a light backdrop (Modus Operandi) and another where light text is displayed against a dark background (Modus Vivendi).") (license license:gpl3+))) +(define-public emacs-punpun-theme + (let ((commit "2f78125609277b2478abdebd8f9d5ee10a823b65") + (revision "0")) + (package + (name "emacs-punpun-theme") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wasamasa/punpun-theme.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1sgxrj3igzq86h3whfymxf4qzv9kpvcrlhbvjmnp7fwrplys0n7d")))) + (build-system emacs-build-system) + (home-page "https://github.com/wasamasa/punpun-theme") + (synopsis "Bleak Emacs theme") + (description + "A bleak theme. Uses shades of gray and the occasional splash of +color. Designed for 256-color terminals. Comes in light and dark!") + (license license:gpl3+)))) + + (define-public emacs-elixir-mode (package (name "emacs-elixir-mode") -- 2.24.1