From ce3ffac5d366ebf20e0d95779f2fe1ea6dde0202 Mon Sep 17 00:00:00 2001 From: Divya Ranjan Date: Wed, 1 Jan 2025 15:29:19 +0000 Subject: gnu: Add emacs-binder. * gnu/packages/emacs-xyz.scm (emacs-binder): New variable. Signed-off-by: Nicolas Goaziou Change-Id: I5c2c0526ad9c12c2797ae5239b0ae2d762ea51af --- gnu/packages/emacs-xyz.scm | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index de7158eb4c..61b6ddf383 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -150,7 +150,7 @@ ;;; Copyright © 2024 Liam Hupfer ;;; Copyright © 2024 aurtzy ;;; Copyright © 2024 Olivier Rojon - +;;; Copyright © 2024 Divya Ranjan Pattanaik ;;; ;;; This file is part of GNU Guix. ;;; @@ -39825,6 +39825,28 @@ (define-public emacs-bind-map 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")) -- cgit v1.2.3