unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add emacs-cyberpunk-theme
@ 2016-08-29  0:32 ng0
  2016-08-29 12:33 ` ng0
  0 siblings, 1 reply; 3+ messages in thread
From: ng0 @ 2016-08-29  0:32 UTC (permalink / raw)
  To: guix-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0003-gnu-Add-emacs-cyberpunk-theme.patch --]
[-- Type: text/x-patch, Size: 1701 bytes --]

From 43c6c8a9983d064e7cfdeed59c3dc923a38007bc Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Sun, 28 Aug 2016 23:46:57 +0000
Subject: [PATCH 3/4] gnu: Add emacs-cyberpunk-theme.

* gnu/packages/emacs.scm (emacs-cyberpunk-theme): New variable.
---
 gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index f3a4627..311f484 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3029,3 +3029,25 @@ and contiguous matches (substring).  The longer the substring match,
 the higher it scores. This maps well to how we think about matching.
 Flx has support for ido (interactively do things) through flx-ido.")
       (license license:gpl3+))))
+
+(define-public emacs-cyberpunk-theme
+  (let ((upstream-name "cyberpunk-theme.el"))
+    (package
+      (name "emacs-cyberpunk-theme")
+      (version "1.17")
+      (source
+       (origin
+         (method url-fetch)
+         (uri (string-append "https://github.com/n3mo/"
+                             upstream-name "/archive/" version ".tar.gz"))
+         (sha256
+          (base32
+           "068jcn4g1bvwgpcvyfqygzw6ahill51c1sqzyyvj2paxckbd7h51"))
+         (file-name (string-append name "-" version ".tar.gz"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/n3mo/cyberpunk-theme.el")
+      (synopsis "Cyberpunk theme for emacs built-in color theme support")
+      (description
+       "Cyberpunk color theme for the emacs 24+ built-in color theme support
+known loosely as deftheme.  Many mode-specific customizations are included.")
+      (license license:gpl3+))))
-- 
2.9.3


[-- Attachment #2: Type: text/plain, Size: 70 bytes --]


-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnu: Add emacs-cyberpunk-theme
  2016-08-29  0:32 [PATCH] gnu: Add emacs-cyberpunk-theme ng0
@ 2016-08-29 12:33 ` ng0
  2016-08-31  7:12   ` Alex Kost
  0 siblings, 1 reply; 3+ messages in thread
From: ng0 @ 2016-08-29 12:33 UTC (permalink / raw)
  To: guix-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0003-gnu-Add-emacs-cyberpunk-theme.patch --]
[-- Type: text/x-patch, Size: 1617 bytes --]

From b340dd80d1e072a1eda40ae195a29b863836c401 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Sun, 28 Aug 2016 23:46:57 +0000
Subject: [PATCH 3/4] gnu: Add emacs-cyberpunk-theme.

* gnu/packages/emacs.scm (emacs-cyberpunk-theme): New variable.
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 6485bee..3088c0a 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3026,3 +3026,24 @@ and contiguous matches (substring).  The longer the substring match,
 the higher it scores. This maps well to how we think about matching.
 Flx has support for ido (interactively do things) through flx-ido.")
     (license license:gpl3+)))
+
+(define-public emacs-cyberpunk-theme
+  (package
+    (name "emacs-cyberpunk-theme")
+    (version "1.17")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
+                           "archive/" version ".tar.gz"))
+       (sha256
+        (base32
+         "068jcn4g1bvwgpcvyfqygzw6ahill51c1sqzyyvj2paxckbd7h51"))
+       (file-name (string-append name "-" version ".tar.gz"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/n3mo/cyberpunk-theme.el")
+    (synopsis "Cyberpunk theme for emacs built-in color theme support")
+    (description
+     "Cyberpunk color theme for the emacs 24+ built-in color theme support
+known loosely as deftheme.  Many mode-specific customizations are included.")
+    (license license:gpl3+)))
-- 
2.9.3


[-- Attachment #2: Type: text/plain, Size: 70 bytes --]


-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnu: Add emacs-cyberpunk-theme
  2016-08-29 12:33 ` ng0
@ 2016-08-31  7:12   ` Alex Kost
  0 siblings, 0 replies; 3+ messages in thread
From: Alex Kost @ 2016-08-31  7:12 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

ng0 (2016-08-29 15:33 +0300) wrote:

> From b340dd80d1e072a1eda40ae195a29b863836c401 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Sun, 28 Aug 2016 23:46:57 +0000
> Subject: [PATCH 3/4] gnu: Add emacs-cyberpunk-theme.

Applied as 9657aba, thanks!

-- 
Alex

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-08-31  7:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-29  0:32 [PATCH] gnu: Add emacs-cyberpunk-theme ng0
2016-08-29 12:33 ` ng0
2016-08-31  7:12   ` Alex Kost

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).