mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add emacs-gcmh.
* gnu/packages/emacs-xyz.scm (emacs-gcmh): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
281869e6f8
commit
028119e9f5
1 changed files with 26 additions and 0 deletions
|
@ -1770,6 +1770,32 @@ (define-public emacs-aggressive-indent
|
|||
than @code{electric-indent-mode}.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public emacs-gcmh
|
||||
;; No tagged release upstream.
|
||||
(let ((commit "84c43a4c0b41a595ac6e299fa317d2831813e580")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-gcmh")
|
||||
(version (git-version "0.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/koral/gcmh")
|
||||
(commit commit)))
|
||||
(sha256
|
||||
(base32 "1r3wiqhrzh7wvqy484nl031fd4bn4cpvkv9646s4cjgvnnnv7jz3"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://gitlab.com/koral/gcmh")
|
||||
(synopsis "Emacs Garbage Collector Magic Hack")
|
||||
(description
|
||||
"This package enforces a sneaky @dfn{garbage collector} (GC) strategy
|
||||
to minimize GC interference with the activity. During normal use a high GC
|
||||
threshold is set. When idling GC is immediately triggered and a low threshold
|
||||
is set.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-ctrlf
|
||||
(package
|
||||
(name "emacs-ctrlf")
|
||||
|
|
Loading…
Reference in a new issue