mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: Add emacs-wordgen.
* gnu/packages/emacs.scm (emacs-wordgen): New public variable.
This commit is contained in:
parent
0e087b704f
commit
ca0e2ab00a
1 changed files with 20 additions and 0 deletions
|
@ -10011,3 +10011,23 @@ (define-public emacs-ido-vertical-mode
|
||||||
(synopsis "Makes ido-mode display vertically")
|
(synopsis "Makes ido-mode display vertically")
|
||||||
(description "Makes ido-mode display prospects vertically.")
|
(description "Makes ido-mode display prospects vertically.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-wordgen
|
||||||
|
(package
|
||||||
|
(name "emacs-wordgen")
|
||||||
|
(version "0.1.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/Fanael/wordgen.el/archive/"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1h2iyixdm49h53pwj9ics9gb9h3g6wa4hainpnjg6mfarf49jkmg"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/Fanael/wordgen.el")
|
||||||
|
(synopsis "Random word generator")
|
||||||
|
(description "This package provides functions to generate random words
|
||||||
|
using user-provided rules.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue