mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-waf: Add some extra tools.
* gnu/packages/python-xyz.scm (python-waf): Add gccdeps and clang_compilation_database tools that are needed by ardupilot.
This commit is contained in:
parent
6c2c11fa10
commit
633c8b7199
1 changed files with 6 additions and 1 deletions
|
@ -6346,7 +6346,12 @@ so it might be a tiny bit slower.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "python" "waf-light" "configure" "build")))
|
;; XXX: Find a way to add all extra tools.
|
||||||
|
(let ((tools '("gccdeps"
|
||||||
|
"clang_compilation_database")))
|
||||||
|
(invoke "python" "waf-light" "configure" "build"
|
||||||
|
(string-append "--tools="
|
||||||
|
(string-join tools ","))))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "python" "waf" "--version")))
|
(invoke "python" "waf" "--version")))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue