me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-popper.

* gnu/packages/emacs-xyz.scm (emacs-popper): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Niklas Eklund 2022-02-08 00:35:28 +01:00 committed by Nicolas Goaziou
parent 64c599c9a3
commit c788557752
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -7292,6 +7292,30 @@ and popup menus.")
autocomplete style popup menu.")
(license license:gpl3+))))
(define-public emacs-popper
;; No tagged release upstream for version 0.45. The commit below matches
;; version bump.
(let ((commit "851d83882192ac9599ac5b053614a42d683b3fab"))
(package
(name "emacs-popper")
(version "0.45")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/karthink/popper")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0pk5wzqlz7n6v8rb1957i3ql0wjx578l68a3rp2m9pxr7a8a03h4"))))
(build-system emacs-build-system)
(home-page "https://github.com/karthink/popper")
(synopsis "Emacs minor-mode to summon and dismiss buffers easily")
(description
"Popper is a minor-mode to tame the flood of ephemeral
windows Emacs produces, while still keeping them within arms reach.")
(license license:gpl3+))))
(define-public emacs-python-black
(package
(name "emacs-python-black")