mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add emacs-envrc.
* gnu/packages/emacs-xyz.scm (emacs-envrc): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
e693927a74
commit
be2b2e884b
1 changed files with 27 additions and 0 deletions
|
@ -93,6 +93,7 @@
|
||||||
;;; Copyright © 2021 Alexandr Vityazev <avityazew@gmail.com>
|
;;; Copyright © 2021 Alexandr Vityazev <avityazew@gmail.com>
|
||||||
;;; Copyright © 2021 Yurii Kholodkov <urist.mckorobochka@gmail.com>
|
;;; Copyright © 2021 Yurii Kholodkov <urist.mckorobochka@gmail.com>
|
||||||
;;; Copyright © 2021 Alexey Abramov <levenson@mmer.org>
|
;;; Copyright © 2021 Alexey Abramov <levenson@mmer.org>
|
||||||
|
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -13667,6 +13668,32 @@ query them from the comfort of your editor.")
|
||||||
(home-page "https://github.com/hrs/engine-mode")
|
(home-page "https://github.com/hrs/engine-mode")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-envrc
|
||||||
|
(package
|
||||||
|
(name "emacs-envrc")
|
||||||
|
(version "0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/purcell/envrc")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0ssf9i6iym2rb530k2w5aj392qa73i6p5y0vwrs5qhkv9lagqq7p"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/purcell/envrc")
|
||||||
|
(synopsis "Support for Direnv which operates buffer-locally")
|
||||||
|
(description
|
||||||
|
"This is library which uses Direnv to set environment variables on
|
||||||
|
a per-buffer basis. This means that when you work across multiple projects
|
||||||
|
which have @file{.envrc} files, all processes launched from the buffers ``in''
|
||||||
|
those projects will be executed with the environment variables specified in
|
||||||
|
those files. This allows different versions of linters and other tools to be
|
||||||
|
used in each project if desired.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-prop-menu
|
(define-public emacs-prop-menu
|
||||||
(package
|
(package
|
||||||
(name "emacs-prop-menu")
|
(name "emacs-prop-menu")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue