gnu: Add emacs-add-hooks.

* gnu/packages/emacs.scm (emacs-add-hooks): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:04:16 +03:00
parent 21a3de583d
commit 56e90e310f
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -9160,3 +9160,23 @@ (define-public emacs-org-ref
You should really read org-ref.org in this package for details.")
(license license:gpl3+))))
(define-public emacs-add-hooks
(package
(name "emacs-add-hooks")
(version "3.1.1")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/nickmccurdy/add-hooks/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"03a28gb3298g7pc2qji9hi44p4d99ljp5mpi9cmg42ldv8fl6549"))))
(build-system emacs-build-system)
(home-page "https://github.com/nickmccurdy/add-hooks/")
(synopsis "Emacs function for setting multiple hooks")
(description "This package provides a @code{add-hooks} function tidies up
duplicate hook and function names further into a single declarative call.")
(license license:gpl3+)))