gnu: Add emacs-danneskjold-theme.

* gnu/packages/emacs.scm (emacs-danneskjold-theme): New variable.

Signed-off-by: 宋文武 <iyzsong@gmail.com>
This commit is contained in:
ng0 2016-11-18 18:59:30 +00:00 committed by 宋文武
parent 5cd4129221
commit 8f49395064
No known key found for this signature in database
GPG key ID: 26525665AE727D37

View file

@ -3259,6 +3259,35 @@ (define-public emacs-cyberpunk-theme
known loosely as deftheme. Many mode-specific customizations are included.")
(license license:gpl3+)))
(define-public emacs-danneskjold-theme
(let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
(revision "1"))
(package
(name "emacs-danneskjold-theme")
(version (string-append "0.0.0-" revision "." (string-take commit 7)))
(home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'delete-screenshots
(lambda _
(delete-file-recursively "screenshots") #t)))))
(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")