1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: Add emacs-campus.

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

Change-Id: I66734116659fdd1bcf89e37a65167552c21323e7
This commit is contained in:
jgart 2024-10-10 08:11:11 -05:00
parent e91d2f7868
commit 43552c0d42
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -4930,6 +4930,32 @@ Some of its major features include:
@end itemize")
(license license:gpl2+)))
(define-public emacs-campus
(let ((commit "0a475cd7704001d8dc8280acb91a317db797933b")
(revision "0"))
(package
(name "emacs-campus")
(version (git-version "0.0" revision commit))
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/eshrh/campus-emacs")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "13vych4kk6adn15scl1s4znnbmfjvihfglxglrqqp2llzh0wsnlm"))))
(arguments (list #:tests? #f)) ; There are no tests.
(propagated-inputs (list emacs-dash emacs-s))
(build-system emacs-build-system)
(home-page "https://github.com/eshrh/campus-emacs")
(synopsis "Simple and sane approach to repl programming")
(description
"Campus is a simple but effective improvement to the
inferior-process repl development experience in Emacs.")
(license license:gpl3+))))
(define-public emacs-caps-lock
(package
(name "emacs-caps-lock")