gnu: emacs-envrc: Add DIRENV as an input.

* gnu/packages/emacs-xyz.scm (emacs-envrc)[arguments]<#:phases>: Set direnv
executable location.
<#:tests?, #:test-command>: Tentatively run tests, without success.  At least,
they do not complain "direnv" executable is nowhere to be found.
[inputs]: Add DIRENV.
This commit is contained in:
Nicolas Goaziou 2023-04-18 15:10:42 +02:00 committed by Maxim Cournoyer
parent e870caa018
commit 2f1b156d04
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -19462,6 +19462,21 @@ (define-public emacs-envrc
(base32
"0vjk8k5k9xsngk50nf611c4j0bikqn9l1y3m35s8y3knwqw22ii0"))))
(build-system emacs-build-system)
(arguments
(list
#:tests? #false ;FIXME: 8 out of 11 tests fail
#:test-command #~(list "emacs" "-Q" "--batch"
"-l" "envrc-tests.el"
"-f" "ert-run-tests-batch-and-exit")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'set-direnv-location
(lambda* (#:key inputs #:allow-other-keys)
(emacs-substitute-variables "envrc.el"
("envrc-direnv-executable"
(search-input-file inputs "/bin/direnv"))))))))
(inputs
(list direnv))
(propagated-inputs
(list emacs-inheritenv))
(home-page "https://github.com/purcell/envrc")