* [PATCH] emacs-danneskjold-theme
@ 2016-11-18 17:19 ng0
2016-11-18 17:19 ` [PATCH] gnu: Add emacs-danneskjold-theme ng0
0 siblings, 1 reply; 4+ messages in thread
From: ng0 @ 2016-11-18 17:19 UTC (permalink / raw)
To: guix-devel
A theme for emacs.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] gnu: Add emacs-danneskjold-theme.
2016-11-18 17:19 [PATCH] emacs-danneskjold-theme ng0
@ 2016-11-18 17:19 ` ng0
2016-11-18 18:02 ` Alex Kost
0 siblings, 1 reply; 4+ messages in thread
From: ng0 @ 2016-11-18 17:19 UTC (permalink / raw)
To: guix-devel
* gnu/packages/emacs.scm (emacs-danneskjold-theme): New variable.
---
gnu/packages/emacs.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index a065959..5084168 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3259,6 +3259,26 @@ Flx has support for ido (interactively do things) through flx-ido.")
known loosely as deftheme. Many mode-specific customizations are included.")
(license license:gpl3+)))
+(define-public emacs-danneskjold-theme
+ (package
+ (name "emacs-danneskjold-theme")
+ (version "20161118.447")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://melpa.org/packages/danneskjold-theme-"
+ version ".tar"))
+ (sha256
+ (base32
+ "0pi1cwscfr6fdacg6s1y65x32zgch5da5yhqciqm13wv6d7bw2jm"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
+ (synopsis "High-contrast Emacs theme")
+ (description
+ "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
+ (license license:gpl3+)))
+
(define-public emacs-auto-complete
(package
(name "emacs-auto-complete")
--
2.10.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add emacs-danneskjold-theme.
2016-11-18 17:19 ` [PATCH] gnu: Add emacs-danneskjold-theme ng0
@ 2016-11-18 18:02 ` Alex Kost
2016-11-18 18:23 ` ng0
0 siblings, 1 reply; 4+ messages in thread
From: Alex Kost @ 2016-11-18 18:02 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
ng0 (2016-11-18 17:19 +0000) wrote:
> * gnu/packages/emacs.scm (emacs-danneskjold-theme): New variable.
> ---
> gnu/packages/emacs.scm | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index a065959..5084168 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -3259,6 +3259,26 @@ Flx has support for ido (interactively do things) through flx-ido.")
> known loosely as deftheme. Many mode-specific customizations are included.")
> (license license:gpl3+)))
>
> +(define-public emacs-danneskjold-theme
> + (package
> + (name "emacs-danneskjold-theme")
> + (version "20161118.447")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append
> + "http://melpa.org/packages/danneskjold-theme-"
As I told you once¹, we don't use tarballs from MELPA, so since there is
no releases or tags, we probably have to use 'git-fetch' here, WDYT?
> + version ".tar"))
> + (sha256
> + (base32
> + "0pi1cwscfr6fdacg6s1y65x32zgch5da5yhqciqm13wv6d7bw2jm"))))
> + (build-system emacs-build-system)
> + (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
> + (synopsis "High-contrast Emacs theme")
> + (description
> + "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
> + (license license:gpl3+)))
> +
> (define-public emacs-auto-complete
> (package
> (name "emacs-auto-complete")
¹ http://lists.gnu.org/archive/html/guix-devel/2016-10/msg00678.html
--
Alex
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add emacs-danneskjold-theme.
2016-11-18 18:02 ` Alex Kost
@ 2016-11-18 18:23 ` ng0
0 siblings, 0 replies; 4+ messages in thread
From: ng0 @ 2016-11-18 18:23 UTC (permalink / raw)
To: Alex Kost; +Cc: guix-devel
Alex Kost <alezost@gmail.com> writes:
> ng0 (2016-11-18 17:19 +0000) wrote:
>
>> * gnu/packages/emacs.scm (emacs-danneskjold-theme): New variable.
>> ---
>> gnu/packages/emacs.scm | 20 ++++++++++++++++++++
>> 1 file changed, 20 insertions(+)
>>
>> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
>> index a065959..5084168 100644
>> --- a/gnu/packages/emacs.scm
>> +++ b/gnu/packages/emacs.scm
>> @@ -3259,6 +3259,26 @@ Flx has support for ido (interactively do things) through flx-ido.")
>> known loosely as deftheme. Many mode-specific customizations are included.")
>> (license license:gpl3+)))
>>
>> +(define-public emacs-danneskjold-theme
>> + (package
>> + (name "emacs-danneskjold-theme")
>> + (version "20161118.447")
>> + (source
>> + (origin
>> + (method url-fetch)
>> + (uri (string-append
>> + "http://melpa.org/packages/danneskjold-theme-"
>
> As I told you once¹, we don't use tarballs from MELPA, so since there is
> no releases or tags, we probably have to use 'git-fetch' here, WDYT?
Yikes. Thanks, I will note this, I forgot about it. Updated patch
coming soon.
>> + version ".tar"))
>> + (sha256
>> + (base32
>> + "0pi1cwscfr6fdacg6s1y65x32zgch5da5yhqciqm13wv6d7bw2jm"))))
>> + (build-system emacs-build-system)
>> + (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
>> + (synopsis "High-contrast Emacs theme")
>> + (description
>> + "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
>> + (license license:gpl3+)))
>> +
>> (define-public emacs-auto-complete
>> (package
>> (name "emacs-auto-complete")
>
> ¹ http://lists.gnu.org/archive/html/guix-devel/2016-10/msg00678.html
--
♥Ⓐ ng0 | ng0.chaosnet.org
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-11-18 18:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-18 17:19 [PATCH] emacs-danneskjold-theme ng0
2016-11-18 17:19 ` [PATCH] gnu: Add emacs-danneskjold-theme ng0
2016-11-18 18:02 ` Alex Kost
2016-11-18 18:23 ` ng0
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).