gnu: Add emacs-f.
* gnu/packages/emacs.scm (emacs-f): New variable.
This commit is contained in:
parent
40aee1a133
commit
cf9ce01fb3
|
@ -960,3 +960,26 @@ and stored in memory.")
|
||||||
(description "This package provides an Emacs library for manipulating
|
(description "This package provides an Emacs library for manipulating
|
||||||
strings.")
|
strings.")
|
||||||
(license license:gpl3+)))
|
(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+)))
|
||||||
|
|
Loading…
Reference in New Issue