diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-07-06 11:55:41 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-07-17 11:04:45 +0200 |
commit | a46e3c0dc606b0f8e04fcf224113eb3de4d865b7 (patch) | |
tree | e3278d3fa21ea0a7ea8d2e053f01b39f395e17f5 | |
parent | 07046e5f44577f2a1c00627f7af2a5d8cfb4e2b1 (diff) | |
download | patches-a46e3c0dc606b0f8e04fcf224113eb3de4d865b7.tar patches-a46e3c0dc606b0f8e04fcf224113eb3de4d865b7.tar.gz |
gnu: Add emacs-page-break-lines.
* gnu/packages/emacs.scm (emacs-page-break-lines): New variable.
-rw-r--r-- | gnu/packages/emacs.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 99fa32cbd0..50f077fa23 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1417,6 +1417,27 @@ be even more useful for people new to lisp who have not yet learned to subconsciously blend out the parentheses.") (license license:gpl3+))) +(define-public emacs-page-break-lines + (package + (name "emacs-page-break-lines") + (version "0.11") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/purcell/page-break-lines/" + "archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg")))) + (build-system emacs-build-system) + (home-page "https://github.com/purcell/page-break-lines") + (synopsis "Display page breaks as tidy horizontal lines") + (description + "This library provides a global mode which displays form feed characters +as horizontal rules.") + (license license:gpl3+))) + (define-public emacs-ob-ipython (package (name "emacs-ob-ipython") |