diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-03-22 20:42:20 +0100 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-03-22 21:33:14 +0100 |
| commit | db656cd0bcda536dfeb42939c46b3daa8d308865 (patch) | |
| tree | c0eb4e80d8c584cfbf21a18546616841a2356305 | |
| parent | 6f15b1d28614595c5588e50b96e41c0caed217ee (diff) | |
gnu: valeronoi: Support Wayland.
* gnu/packages/engineering.scm (valeronoi)[build-system]: Switch to
qt-build-system.
[arguments]: Add qtbase.
[inputs]: Add qtwayland.
Change-Id: I579963d162898b5cec8b4da61e6999ed8120cd88
| -rw-r--r-- | gnu/packages/engineering.scm | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 75c1787351e..7c95c073fb3 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1304,13 +1304,15 @@ the 'showing the effect of'-style of operation.") "tests/test_main.cpp") (("catch\\.hpp") "catch2/catch.hpp")))))) - (build-system cmake-build-system) + (build-system qt-build-system) (arguments - `(#:phases (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "./valeronoi-tests"))))))) + (list #:qtbase qtbase + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "./valeronoi-tests"))))))) (inputs (list boost cgal gmp @@ -1318,7 +1320,8 @@ the 'showing the effect of'-style of operation.") mpfr openssl qtbase - qtsvg)) + qtsvg + qtwayland)) (native-inputs (list catch2)) (home-page "https://github.com/ccoors/Valeronoi") (synopsis "WiFi mapping companion application for Valetudo") |
