me
/
guix
Archived
1
0
Fork 0

gnu: emacs-clang-format: Remove input labels.

* gnu/packages/llvm.scm (emacs-clang-format)[arguments]: Use SEARCH-INPUT-FILE
instead of label.
master
Marius Bakke 2022-01-08 11:31:58 +01:00
parent 2db689b669
commit 6a9d0560ab
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 2 additions and 3 deletions

View File

@ -1563,12 +1563,11 @@ setup(name=\"clang\", packages=[\"clang\"])\n")))))
(modify-phases %standard-phases
(add-after 'unpack 'configure
(lambda* (#:key inputs #:allow-other-keys)
(let ((clang (assoc-ref inputs "clang")))
(let ((clang-format (search-input-file inputs "/bin/clang-format")))
(copy-file "tools/clang-format/clang-format.el" "clang-format.el")
(emacs-substitute-variables "clang-format.el"
("clang-format-executable"
(string-append clang "/bin/clang-format"))))
#t)))))
clang-format))))))))
(synopsis "Format code using clang-format")
(description "This package filters code through @code{clang-format}
to fix its formatting. @code{clang-format} is a tool that formats