1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-28 05:00:29 +02:00

gnu: emacs-meep: New package.

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

Change-Id: Ic7df4f88470c538f4fa57620591a4c48d7b602ff
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Anderson Torres
2025-11-14 14:14:17 -03:00
committed by Liliana Marie Prikler
parent afe62cfdba
commit 826c3c78bc

View File

@@ -35259,6 +35259,36 @@ behavior;
(home-page "https://codeberg.org/ideasman42/emacs-bray/")
(license license:gpl3+))))
(define-public emacs-meep
;; No tagged releases. Version taken from meep.el.
(let ((commit "de7f3c51bcfcb54417f3c59ae9db2ce24d9ec7bd")
(revision "0"))
(package
(name "emacs-meep")
(version (git-version "0.0.1" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/ideasman42/emacs-meep/")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0hbi4jd6h35a12l1y0gs52898lvw3cs9mcxbqwdvazmzz8wzwia7"))))
(build-system emacs-build-system)
(arguments
(list #:tests? #f)) ; No tests.
(propagated-inputs
(list emacs-bray))
(synopsis "Lightweight modal editing functionalities")
(description
"This package provides utility functions to bind to keys, intended to
be used along with @code{emacs-bray} although most of them can be used in
vanilla Emacs.")
(home-page "https://codeberg.org/ideasman42/emacs-meep/")
(license license:gpl3+))))
(define-public emacs-repeat-fu
;; Upstream has no tags; release extracted from source code
(let ((commit "b91d55001cca71e5df7a9f665c7da73ab9f55efd")