mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 07:58:01 -05:00
gnu: Add emacs-springboard.
* gnu/packages/emacs-xyz.scm (emacs-springboard): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
1fe75f8397
commit
697a4c464d
1 changed files with 30 additions and 0 deletions
|
@ -22484,6 +22484,36 @@ (define-public emacs-eshell-up
|
|||
parent directory using @code{Eshell}.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-springboard
|
||||
;; Upstream provides no tag. Using the latest commit. Version is extracted
|
||||
;; from "Version:" keyword.
|
||||
(let ((commit "687d1e5898a880878995dc9bffe93b4598366203")
|
||||
(version "1.0")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-springboard")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jwiegley/springboard")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0fn8c4hqblfjvcpg68kj2dmdjqsdnxddqbzgvakl43zckjg8pi01"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-helm" ,emacs-helm)
|
||||
("emacs-ivy" ,emacs-ivy)))
|
||||
(home-page "https://github.com/jwiegley/springboard")
|
||||
(synopsis "Change the Emacs default directory quickly")
|
||||
(description
|
||||
"This Emacs package provides a quick way to change the default
|
||||
directory for only the next invoked command. The directory selection can be
|
||||
done using Helm, Ido or Ivy.")
|
||||
(license license:gpl2+))))
|
||||
|
||||
(define-public emacs-tco-el
|
||||
(let ((commit "482db5313f090b17ed22ccd856f0e141dc75afe6")
|
||||
(revision "1"))
|
||||
|
|
Loading…
Reference in a new issue