From 6a9d0560abed5a4246698d724147ad15feed478b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 8 Jan 2022 11:31:58 +0100 Subject: gnu: emacs-clang-format: Remove input labels. * gnu/packages/llvm.scm (emacs-clang-format)[arguments]: Use SEARCH-INPUT-FILE instead of label. --- gnu/packages/llvm.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gnu/packages/llvm.scm') diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index 24a2de73eb..83d926b60b 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -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 -- cgit v1.2.3