gnu: Add emacs-binder.

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

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: I5c2c0526ad9c12c2797ae5239b0ae2d762ea51af
This commit is contained in:
Divya Ranjan 2025-01-01 15:29:19 +00:00 committed by Nicolas Goaziou
parent 9b88058993
commit ce3ffac5d3
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -150,7 +150,7 @@
;;; Copyright © 2024 Liam Hupfer <liam@hpfr.net>
;;; Copyright © 2024 aurtzy <aurtzy@gmail.com>
;;; Copyright © 2024 Olivier Rojon <o.rojon@posteo.net>
;;; Copyright © 2024 Divya Ranjan Pattanaik <divya@subvertising.org>
;;;
;;; This file is part of GNU Guix.
;;;
@ -39825,6 +39825,28 @@ of a leader key as used in Vim or the @code{emacs-evil-leader} package,
and allows for an arbitrary number of leader keys.")
(license license:gpl3+))))
(define-public emacs-binder
(package
(name "emacs-binder")
(version "0.5.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/divyaranjan/binder")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
"1fdgl31zc15cysv1yys95j0106i2fwfxb3qcwwh7f3mcz2snr2md")))
(build-system emacs-build-system)
(home-page "https://codeberg.org/divyaranjan/binder")
(synopsis
"Binder is a global minor mode to facilitate working on multiple files")
(description
"Primarily, Binder provides a global minor mode Binder Mode.
This allows working with files in the current @code{binder-project-directory}.")
(license license:gpl3+)))
(define-public emacs-spaceleader
(let ((commit "5d88d120494623d6777d464ec40ff4bb7d6b1d57")
(revision "1"))