gnu: Add emacs-clang-rename.

* gnu/packages/llvm.scm (emacs-clang-rename): New variable.
This commit is contained in:
Pierre Neidhardt 2018-11-26 12:42:39 +01:00
parent 7628ff1fc0
commit 51002b723d
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 22 additions and 0 deletions

View File

@ -460,3 +460,25 @@ code analysis tools.")
to fix its formatting. @code{clang-format} is a tool that formats
C/C++/Obj-C code according to a set of style options, see
@url{http://clang.llvm.org/docs/ClangFormatStyleOptions.html}.")))
(define-public emacs-clang-rename
(package
(inherit clang)
(name "emacs-clang-rename")
(build-system emacs-build-system)
(inputs
`(("clang" ,clang)))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'configure
(lambda* (#:key inputs #:allow-other-keys)
(let ((clang (assoc-ref inputs "clang")))
(copy-file "tools/clang-rename/clang-rename.el" "clang-rename.el")
(emacs-substitute-variables "clang-rename.el"
("clang-rename-binary"
(string-append clang "/bin/clang-rename"))))
#t)))))
(synopsis "Rename every occurrence of a symbol using clang-rename")
(description "This package renames every occurrence of a symbol at point
using @code{clang-rename}.")))