gnu: valeronoi: Reformat with guix style.
* gnu/packages/engineering.scm (valeronoi): Process package with guix style.
parent
58452ecdb4
commit
0e467b7b0b
|
@ -1357,50 +1357,47 @@ the 'showing the effect of'-style of operation.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public valeronoi
|
(define-public valeronoi
|
||||||
(package
|
(package
|
||||||
(name "valeronoi")
|
(name "valeronoi")
|
||||||
(version "0.2.0")
|
(version "0.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(git-reference
|
(url "https://github.com/ccoors/Valeronoi")
|
||||||
(url "https://github.com/ccoors/Valeronoi")
|
(commit (string-append "v" version))))
|
||||||
(commit (string-append "v" version))))
|
(file-name (git-file-name name version))
|
||||||
(file-name (git-file-name name version))
|
(sha256
|
||||||
(sha256
|
(base32 "1qkhrqkjsmm0h1bxf2ihkqfhdr18xx5x1i2ds1mla13zm0bw2570"))
|
||||||
(base32 "1qkhrqkjsmm0h1bxf2ihkqfhdr18xx5x1i2ds1mla13zm0bw2570"))
|
(snippet #~(begin
|
||||||
(snippet
|
(use-modules (guix build utils))
|
||||||
#~(begin (use-modules (guix build utils))
|
(delete-file-recursively "3rdparty")
|
||||||
(delete-file-recursively "3rdparty")
|
(substitute* '("tests/test_colormap.cpp"
|
||||||
(substitute* '("tests/test_colormap.cpp"
|
"tests/test_main.cpp")
|
||||||
"tests/test_main.cpp")
|
(("catch\\.hpp")
|
||||||
(("catch\\.hpp") "catch2/catch.hpp"))))))
|
"catch2/catch.hpp"))))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
(modify-phases %standard-phases
|
(replace 'check
|
||||||
(replace 'check
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(when tests?
|
||||||
(when tests?
|
(invoke "./valeronoi-tests")))))))
|
||||||
(invoke "./valeronoi-tests")))))))
|
(inputs (list boost
|
||||||
(inputs
|
cgal
|
||||||
(list boost
|
gmp
|
||||||
cgal
|
libxkbcommon
|
||||||
gmp
|
mpfr
|
||||||
libxkbcommon
|
openssl
|
||||||
mpfr
|
qtbase
|
||||||
openssl
|
qtsvg))
|
||||||
qtbase
|
(native-inputs (list catch2))
|
||||||
qtsvg))
|
(home-page "https://github.com/ccoors/Valeronoi")
|
||||||
(native-inputs
|
(synopsis "WiFi mapping companion application for Valetudo")
|
||||||
(list catch2))
|
(description
|
||||||
(home-page "https://github.com/ccoors/Valeronoi")
|
"Valeronoi (Valetudo + Voronoi) is a companion for Valetudo for generating
|
||||||
(synopsis "WiFi mapping companion application for Valetudo")
|
|
||||||
(description
|
|
||||||
"Valeronoi (Valetudo + Voronoi) is a companion for Valetudo for generating
|
|
||||||
WiFi signal strength maps. It visualizes them using a Voronoi diagram.")
|
WiFi signal strength maps. It visualizes them using a Voronoi diagram.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public volk
|
(define-public volk
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue