diff options
author | Federico Beffa <beffa@fbengineering.ch> | 2015-07-23 10:15:36 +0200 |
---|---|---|
committer | Federico Beffa <beffa@fbengineering.ch> | 2015-08-01 12:37:13 +0200 |
commit | cf9ce01fb3d5f4f036bd36c0cc69fa3a519a6685 (patch) | |
tree | 762ce70d4599a994d242bdbab7a9c74fa438ffad /gnu/packages/emacs.scm | |
parent | 40aee1a133fd5163db543a224c1814eddb63087b (diff) | |
download | guix-cf9ce01fb3d5f4f036bd36c0cc69fa3a519a6685.tar guix-cf9ce01fb3d5f4f036bd36c0cc69fa3a519a6685.tar.gz |
gnu: Add emacs-f.
* gnu/packages/emacs.scm (emacs-f): New variable.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 2befebc61c..c2a9bb6c5c 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -960,3 +960,26 @@ and stored in memory.") (description "This package provides an Emacs library for manipulating strings.") (license license:gpl3+))) + +(define-public emacs-f + (package + (name "emacs-f") + (version "0.17.2") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/rejeep/f.el/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1n5gcldf43wmkr7jxgs519v21zavwr0yn8048iv6gvgfwicnyjlx")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-s" ,emacs-s) + ("emacs-dash" ,emacs-dash))) + (home-page "http://github.com/rejeep/f.el") + (synopsis "Emacs API for working with files and directories") + (description "This package provides an Emacs library for working with +files and directories.") + (license license:gpl3+))) |