lilyp pushed a commit to branch emacs-team
in repository guix.
commit 8d521d8786a292873a5652d7f89e3ab8dfbe5271
Author: Morgan Smith <[email protected]>
AuthorDate: Sun Mar 2 17:15:13 2025 -0500
gnu: emacs-know-your-http-well: Use '#:lisp-directory'.
* gnu/packages/emacs-xyz.scm (emacs-know-your-http-well): Use
'#:lisp-directory'.
Change-Id: I401730ca43726880edf2e67e21fbc21455197587
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5274cd1f42..52fe9553eb 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27460,20 +27460,17 @@ regions which @code{hideshow} can hide.")
(sha256
(base32 "1p4ibx0qgznv8ard4a9m7345ay8ij2qzmqdqiqlllndqq6mz62x5"))))
(arguments
- `(#:phases
+ `(#:lisp-directory "emacs"
+ #:phases
(modify-phases %standard-phases
(add-after 'unpack 'install-json-files
(lambda* (#:key outputs #:allow-other-keys)
(for-each (lambda (directory)
- (copy-recursively directory
+ (copy-recursively (string-append "../" directory)
(string-append
- (assoc-ref outputs "out")
+ (assoc-ref outputs "out") "/"
directory)))
- '("js" "json"))))
- (add-after 'unpack 'chdir-elisp
- ;; Elisp directory is not in root of the source.
- (lambda _
- (chdir "emacs"))))))
+ '("js" "json")))))))
(build-system emacs-build-system)
(home-page "https://github.com/for-GET/know-your-http-well")
(synopsis "Meaning of HTTP headers codes")