gnu: Add emacs-frog-menu.
* gnu/packages/emacs-xyz.scm (emacs-frog-menu): New variable. Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
parent
eff412ed3b
commit
317879f555
|
@ -10223,6 +10223,33 @@ environment variables to be retrieved from the shell, so that Emacs will see
|
|||
the same values you get in a terminal.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-frog-menu
|
||||
(let ((commit "740bbc88b8535d31f783f3b2043a2a6683afbf31")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-frog-menu")
|
||||
(version (git-version "0.2.9" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/clemera/frog-menu")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1g77424jwq62qj06rvld44s5hp0dw8rw2pwmmag6gd536zf65xrj"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-posframe" ,emacs-posframe)
|
||||
("emacs-avy" ,emacs-avy)))
|
||||
(home-page "https://github.com/clemera/frog-menu")
|
||||
(synopsis "Quickly pick items from ad hoc menus")
|
||||
(description
|
||||
"This package provides a popup offering a preview of a list of
|
||||
candidates on which user-defined dispatch actions can act.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-deft
|
||||
(package
|
||||
(name "emacs-deft")
|
||||
|
|
Loading…
Reference in New Issue