mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: valeronoi: Unbundle catch2 header.
* gnu/packages/engineering.scm (valeroni)[source]: Add snippet to remove bundled header. [native-inputs]: Add catch2.
This commit is contained in:
parent
047589b166
commit
58452ecdb4
1 changed files with 9 additions and 1 deletions
|
@ -1369,7 +1369,13 @@ (define-public valeronoi
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1qkhrqkjsmm0h1bxf2ihkqfhdr18xx5x1i2ds1mla13zm0bw2570"))))
|
||||
(base32 "1qkhrqkjsmm0h1bxf2ihkqfhdr18xx5x1i2ds1mla13zm0bw2570"))
|
||||
(snippet
|
||||
#~(begin (use-modules (guix build utils))
|
||||
(delete-file-recursively "3rdparty")
|
||||
(substitute* '("tests/test_colormap.cpp"
|
||||
"tests/test_main.cpp")
|
||||
(("catch\\.hpp") "catch2/catch.hpp"))))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -1387,6 +1393,8 @@ (define-public valeronoi
|
|||
openssl
|
||||
qtbase
|
||||
qtsvg))
|
||||
(native-inputs
|
||||
(list catch2))
|
||||
(home-page "https://github.com/ccoors/Valeronoi")
|
||||
(synopsis "WiFi mapping companion application for Valetudo")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue