diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-07-12 23:02:18 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-07-17 11:04:45 +0200 |
commit | 012c8b35528631bf641d95cdcd33034d4e268b8b (patch) | |
tree | fe1790390a7f079391f97939bae9ccfcdef4a025 /gnu/packages/emacs.scm | |
parent | 480f7350d9dd57be7aad48646f9eb1b4025ec0fe (diff) | |
download | patches-012c8b35528631bf641d95cdcd33034d4e268b8b.tar patches-012c8b35528631bf641d95cdcd33034d4e268b8b.tar.gz |
gnu: Add emacs-solarized-theme.
* gnu/packages/emacs.scm (emacs-solarized-theme): New variable.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1e383f1d1a..3fcf121dad 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2073,6 +2073,30 @@ number.") It is built on top of the custom theme support in Emacs 24 or later.") (license license:gpl3+))) +(define-public emacs-solarized-theme + (package + (name "emacs-solarized-theme") + (version "1.2.2") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/bbatsov/solarized-emacs/" + "archive/v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-f" ,emacs-f) + ("emacs-s" ,emacs-s))) + (home-page "http://github.com/bbatsov/solarized-emacs") + (synopsis "Port of the Solarized theme for Emacs") + (description + "Solarized for Emacs is a port of the Solarized theme for Vim. This +package provides a light and a dark variant.") + (license license:gpl3+))) + (define-public emacs-smartparens (package (name "emacs-smartparens") |