gnu: Add emacs-redshank.

* gnu/packages/emacs-xyz.scm (emacs-redshank): New variable.
master
Pierre Neidhardt 2019-02-07 19:21:24 +01:00
parent 024d5275c5
commit 285bf324f0
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 26 additions and 0 deletions

View File

@ -13086,3 +13086,29 @@ GUI.")
(description "@code{emacs-google-c-style} provides an Emacs settings
file for Google C and C++ style.")
(license license:gpl1+))))
(define-public emacs-redshank
(let ((commit "f98e68f532e622bcd464292ca4a9cf5fbea14ebb")
(revision "1"))
(package
(name "emacs-redshank")
(version (git-version "0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "http://www.foldr.org/~michaelw/projects/redshank.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1jdkgvd5xy9hl5q611jwah2n05abjp7qcy9sj4k1z11x0ii62b6p"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-paredit" ,emacs-paredit)))
(home-page "http://www.foldr.org/~michaelw/emacs/redshank/")
(synopsis "Common Lisp Editing Extensions (for Emacs)")
(description "Redshank is a collection of code-wrangling Emacs macros
mostly geared towards Common Lisp, but some are useful for other Lisp
dialects, too. Redshank's code transformations aim to be expression-based (as
opposed to character-based).")
(license license:gpl1+))))