From a11d6a58aa6c4ccc403d0bf4955b899b8e482cd3 Mon Sep 17 00:00:00 2001 From: Elais Player Date: Wed, 29 Apr 2020 10:37:24 -0600 Subject: [PATCH] gnu: Add emacs-boon. * gnu/packages/emacs-xyz.scm (emacs-boon): New variable. --- gnu/packages/emacs-xyz.scm | 67 +++++++++++++++++++++----------------- 1 file changed, 37 insertions(+), 30 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 13d539e607..f9438fca10 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -22640,6 +22640,43 @@ ASCII UML sequence diagrams in Emacs, which can be embedded in source code, comments or emails.") (license license:gpl3+)))) +(define-public emacs-boon + (package + (name "emacs-boon") + (version "1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jyp/boon/") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ss9bjs34q41pa0g0nbdzd8fwpjcbd2239rdlx5aykfv9v0b8j77")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-expand-region" ,emacs-expand-region) + ("emacs-multiple-cursors" ,emacs-multiple-cursors) + ("powerline" ,emacs-powerline) + ("spaceline" ,emacs-spaceline))) + (home-page "https://github.com/jyp/boon") + (synopsis "Ergonomic Command Mode for Emacs") + (description + "Boon is a complete package for modal editing, which is not Evil. +Strong points: + +@itemize +@item Ergonomic: common commands are easy to type. +@item Emacs-friendly: Emacs conventions are respected as much as compatible +with design goals. This means that Boon integrates well with existing Emacs +infrastructure, and leverages it. Existing user configuration can often be +re-used. +@item Modular: No need to buy into the whole system: mix-and-match the parts +you want. +@end itemize") + (license license:gpl3))) + (define-public emacs-trashed (package (name "emacs-trashed") @@ -22664,33 +22701,3 @@ provides a simple but convenient user interface to manage those trashed files.") (license license:gpl3+))) -(define-public emacs-boon - (package - (name "emacs-boon") - (version "1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jyp/boon/") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1ss9bjs34q41pa0g0nbdzd8fwpjcbd2239rdlx5aykfv9v0b8j77")))) - (build-system emacs-build-system) - (propagated-inputs - `(("emacs-expand-region" ,emacs-expand-region) - ("spaceline" ,emacs-spaceline) - ("powerline" ,emacs-powerline) - ("emacs-dash" ,emacs-dash) - ("emacs-multiple-cursors" ,emacs-multiple-cursors))) - (home-page "https://github.com/jyp/boon") - (synopsis "Ergonomic Command Mode for Emacs.") - (description - "Boon brings modal editing capabilities to Emacs and... - -- It tries to be as ergonomic as possible. -- It remains lightweight (~300 loc for its core.) -- It attempts to integrate with Emacs as smoothly as possible") - (license license:gpl3))) -- 2.26.2