[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/38: gnu: emacs-ghq: Do not propagate ghq.
From: |
guix-commits |
Subject: |
15/38: gnu: emacs-ghq: Do not propagate ghq. |
Date: |
Sun, 21 May 2023 08:55:20 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit a12a8d208b205e727a833afc2e8116f99c38b8bd
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun May 21 13:20:51 2023 +0200
gnu: emacs-ghq: Do not propagate ghq.
* gnu/packages/emacs-xyz.scm (emacs-ghq)
[arguments]<#:phases>: Add a phase to avoid propagating GHQ.
[inputs]: Add GHQ.
[propagated-inputs]: Remove GHQ.
---
gnu/packages/emacs-xyz.scm | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0e7ff29110..f14d3c44e7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1917,8 +1917,19 @@ automatically opened with this mode.")
(sha256
(base32 "10a7rxmijwmdkfb5rgavd8inc3a45q0m57dxdf6v62bcy00kmw4l"))))
(build-system emacs-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'set-ghq-location
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((ghq (search-input-file inputs "/bin/ghq")))
+ (substitute* "ghq.el"
+ (("\"ghq") (string-append "\"" ghq)))))))))
+ (inputs
+ (list ghq))
(propagated-inputs
- (list emacs-dash emacs-s ghq))
+ (list emacs-dash emacs-s))
(home-page "https://github.com/rcoedo/emacs-ghq")
(synopsis "Emacs interface for @code{ghq} tool")
(description
- branch master updated (c15ae77bbc -> e499cb2c12), guix-commits, 2023/05/21
- 04/38: gnu: emacs-vundo: Update to 2.1.0., guix-commits, 2023/05/21
- 12/38: gnu: emacs-ement: Update to 0.9.3., guix-commits, 2023/05/21
- 07/38: gnu: emacs-editorconfig: Update to 0.10.1., guix-commits, 2023/05/21
- 11/38: gnu: emacs-elpher: Update to 3.5.0., guix-commits, 2023/05/21
- 13/38: gnu: emacs-find-file-in-project: Update to 6.2.1., guix-commits, 2023/05/21
- 14/38: gnu: emacs-ghq: Update to 0.2.0., guix-commits, 2023/05/21
- 15/38: gnu: emacs-ghq: Do not propagate ghq.,
guix-commits <=
- 16/38: gnu: emacs-ghub: Update to 3.6.0., guix-commits, 2023/05/21
- 18/38: gnu: emacs-gptel: Update to 0.3.6., guix-commits, 2023/05/21
- 03/38: gnu: emacs-excorporate: Update to 1.1.0., guix-commits, 2023/05/21
- 01/38: gnu: emacs-soap-client: Update to 3.2.3., guix-commits, 2023/05/21
- 02/38: gnu: Add emacs-url-http-oauth., guix-commits, 2023/05/21
- 06/38: gnu: emacs-beframe: Update to 0.3.0., guix-commits, 2023/05/21
- 05/38: gnu: emacs-auto-compile: Update to 1.8.0., guix-commits, 2023/05/21
- 08/38: gnu: emacs-ef-themes: Update to 1.0.0., guix-commits, 2023/05/21
- 09/38: gnu: emacs-eldev: Update to 1.4., guix-commits, 2023/05/21
- 10/38: gnu: emacs-elfeed-score: Update to 1.2.6., guix-commits, 2023/05/21