From a4c95372e28c73ec8f8a5aaba53b6de39185fc25 Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 14 Feb 2017 13:18:23 +0000 Subject: gnu: Add vim-luna. * gnu/packages/vim.scm (vim-luna): New variable. Signed-off-by: Kei Kebreau --- gnu/packages/vim.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index ca8cb5637f..b80b3f2ebf 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -336,6 +336,42 @@ trouble using them, because you do not have to remember each snippet name.") (home-page "http://foldling.org/git/vim-scheme.git/") (license license:public-domain)))) +(define-public vim-luna + (let ((commit "633619953dcf8577168e255230f96b05f28d6371") + (revision "1")) + (package + (name "vim-luna") + (version (string-append "0.0.0-" revision "." (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/notpratheek/vim-luna") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0ka3qbhsh8lix1vyj4678j7dnchkd8khhirrnn3aylxxf8fpqyg8")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (vimfiles (string-append out "/share/vim/vimfiles")) + (colors (string-append vimfiles "/colors"))) + (copy-recursively "colors" colors) + #t)))))) + (synopsis "Dark color theme for Vim") + (description + "@code{vim-luna} is a dark color theme for Vim.") + (home-page "https://github.com/notpratheek/vim-luna") + (license license:expat)))) + (define-public neovim (package (name "neovim") -- cgit v1.2.3 9c9a26cae11941a74ada6234'>root/gnu/packages/lxqt.scm
AgeCommit message (Expand)Author
2016-06-17gnu: libqtxdg: Move qtbase to propagated-inputs....Efraim Flashner
2016-06-16gnu: lxqt-common: Add missing inputs....Efraim Flashner
2016-06-16gnu: lxqt-session: Add missing inputs....Efraim Flashner
2016-06-16gnu: liblxqt: Add missing inputs....Efraim Flashner
2016-06-16gnu: libqtxdg: Build with qtbase....Efraim Flashner
2016-06-16gnu: lxqt: Update uris....Efraim Flashner
2016-04-14gnu: packages: Use 'search-patches' everywhere....Alex Kost
2016-02-14gnu: lxqt: Update source URLs to use HTTPS....Mark H Weaver
2015-10-03gnu: libqtxdg: Fix download location....Andreas Enge
2015-10-03gnu: liblxqt: Fix download location....Andreas Enge
2015-10-03gnu: Add lxqt-session....Andreas Enge
2015-10-03gnu: Add lxqt-common....Andreas Enge
2015-10-03gnu: liblxqt: Fix download location....Andreas Enge
2015-07-27gnu: liblxqt: Fix build with Qt 5.5....Andreas Enge
2015-07-27gnu: libqtxdg: Update to 1.2.0....Andreas Enge
2015-07-24gnu: Add liblxqt....Andreas Enge
2015-03-06gnu: Add libqtxdg....Andreas Enge