mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add emacs-buffer-env.
* gnu/packages/emacs-xyz.scm (emacs-buffer-env): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
80baa8f87a
commit
6f678b847a
1 changed files with 21 additions and 0 deletions
|
@ -29557,6 +29557,27 @@ (define-public emacs-boxquote
|
|||
example code.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-buffer-env
|
||||
(package
|
||||
(name "emacs-buffer-env")
|
||||
(version "0.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://elpa.gnu.org/packages/buffer-env-"
|
||||
version ".tar"))
|
||||
(sha256
|
||||
(base32
|
||||
"0y8ik87dqldhn6q631zp2ln9z5byqgm9icrvr4xrdx6g8mr9c56z"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-compat))
|
||||
(home-page "https://github.com/astoff/buffer-env")
|
||||
(synopsis "Create buffer-local process environments")
|
||||
(description "This package creates buffer-local environments using scripts
|
||||
similar to Direnv. This allows Emacs to call the correct version of external
|
||||
programs such as linters, compilers, and language servers on a per-project
|
||||
basis.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-buffer-move
|
||||
(package
|
||||
(name "emacs-buffer-move")
|
||||
|
|
Loading…
Reference in a new issue