[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/12: gnu: Add emacs-dash.
From: |
Federico Beffa |
Subject: |
04/12: gnu: Add emacs-dash. |
Date: |
Sat, 01 Aug 2015 10:39:18 +0000 |
beffa pushed a commit to branch master
in repository guix.
commit d4dbf10eb16401f9a8cbdf8b239586ea18528461
Author: Federico Beffa <address@hidden>
Date: Wed Jul 22 17:38:08 2015 +0200
gnu: Add emacs-dash.
* gnu/packages/emacs.scm (emacs-dash): New variable.
---
gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index e264eae..815a258 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -909,3 +909,28 @@ e.g. ghostscript and stored in the file-system, but rather
created on-demand
and stored in memory.")
(home-page "https://github.com/politza/pdf-tools")
(license license:gpl3+)))
+
+(define-public emacs-dash
+ (package
+ (name "emacs-dash")
+ (version "2.11.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/magnars/dash.el/archive/"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1piwcwilkxcbjxx832mhb7q3pz1fgwp203r581bpqcw6kd5x726q"))))
+ (build-system emacs-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'install 'check
+ (lambda _
+ (zero? (system* "./run-tests.sh")))))))
+ (home-page "https://github.com/magnars/dash.el")
+ (synopsis "Modern list library for Emacs")
+ (description "This package provides a modern list API library for Emacs.")
+ (license license:gpl3+)))
- branch master updated (8fd857f -> 48dbeef), Federico Beffa, 2015/08/01
- 03/12: import: elpa: Improve error message reporting., Federico Beffa, 2015/08/01
- 05/12: gnu: Add emacs-s., Federico Beffa, 2015/08/01
- 01/12: gnu: Add fastcap., Federico Beffa, 2015/08/01
- 04/12: gnu: Add emacs-dash.,
Federico Beffa <=
- 06/12: build: emacs: Fix bug and improvement robustness., Federico Beffa, 2015/08/01
- 02/12: gnu: Add fasthenry., Federico Beffa, 2015/08/01
- 08/12: gnu: Add python-mistune., Federico Beffa, 2015/08/01
- 07/12: gnu: Add emacs-f., Federico Beffa, 2015/08/01
- 09/12: gnu: Add python-ptyprocess., Federico Beffa, 2015/08/01
- 12/12: gnu: Add emacs-ob-ipython., Federico Beffa, 2015/08/01
- 10/12: gnu: Add python-terminado., Federico Beffa, 2015/08/01
- 11/12: gnu: python-ipython: Update to 3.2.1., Federico Beffa, 2015/08/01