From db656cd0bcda536dfeb42939c46b3daa8d308865 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Sun, 22 Mar 2026 20:42:20 +0100 Subject: [PATCH] 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 --- gnu/packages/engineering.scm | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 75c1787351..7c95c073fb 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")