diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-03-11 18:46:25 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-03-11 18:46:25 +0100 |
commit | 842e66c573c74da5bd01204c590fea667b64498c (patch) | |
tree | 5e752b9843c0b9c36713d7721f46f3c05d8e2b50 /gnu/packages/emacs-xyz.scm | |
parent | 34e3d028b9d180535108432a46b9569be6ab4dc5 (diff) | |
download | guix-842e66c573c74da5bd01204c590fea667b64498c.tar.gz guix-842e66c573c74da5bd01204c590fea667b64498c.zip |
gnu: Add emacs-lorem-ipsum.
* gnu/packages/emacs-xyz.scm (emacs-lorem-ipsum): New variable.
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b359777923..7807f97c45 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13247,3 +13247,25 @@ provides several enhancements over the ordinary in the completion list and showing keyboard shortcuts, and it supports several completion systems for selecting commands, such as ido and ivy.") (license license:gpl3+))) + +(define-public emacs-lorem-ipsum + (let ((commit "4b39f6fed455d67f635b3837cf5668bf74d0f6cd")) + (package + (name "emacs-lorem-ipsum") + (version (git-version "0.2" "1" commit)) + (home-page "https://github.com/jschaf/emacs-lorem-ipsum/") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0a3b18p3vdjci89prsgdzjnfxsl8p67vjhf8ai4qdng7zvh50lir")))) + (build-system emacs-build-system) + (synopsis "Insert dummy pseudo Latin text in Emacs") + (description "This package provides convenience functions to insert +dummy Latin text into a buffer. This can be useful if you need to produce +paragraphs or pages of text for testing purposes.") + (license license:gpl3+)))) |