guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#57578] [PATCH] gnu: Add emacs-buffer-env.


From: rdes
Subject: [bug#57578] [PATCH] gnu: Add emacs-buffer-env.
Date: Sun, 04 Sep 2022 14:32:10 +0000

* gnu/packages/emacs-xyz.scm (emacs-buffer-env): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6d89104226..e2740e4cc9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -32488,3 +32488,25 @@ a way to pop up a frame at point.  Vertico-posframe is an Emacs package and
 a Vertico extension which provides a way to pop up a frame at point to show
 a vertical completion UI.")
     (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 "Buffer-local process environments")
+    (description
+     "With this package, you can teach Emacs to call the correct version of external
+programs such as linters, compilers and language servers on a /per-project/
+basis.  Thus you can work on several projects in parallel with no undue
+interference and switch seamlessly between them.")
+    (license license:gpl3+)))
-- 
2.34.4



reply via email to

[Prev in Thread] Current Thread [Next in Thread]