guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#50661] [PATCH] gnu: Add valeronoi.


From: phodina
Subject: [bug#50661] [PATCH] gnu: Add valeronoi.
Date: Sat, 18 Sep 2021 13:25:40 +0000

* gnu/packages/engineering.scm (valeronoi): New variable.

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 46622f3a1f..37f927a7a3 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -24,6 +24,7 @@
 ;;; Copyright © 2021 qblade <qblade@protonmail.com>
 ;;; Copyright © 2021 Gerd Heber <gerd.heber@gmail.com>
 ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
+;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -127,6 +128,7 @@
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages openkinect)
+  #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages xorg))

 (define-public librecad
@@ -1168,6 +1170,32 @@ educational use.  As such, there is an emphasis on 
capabilities that improve
 the 'showing the effect of'-style of operation.")
     (license license:gpl2+)))

+(define-public valeronoi
+(package
+  (name "valeronoi")
+  (version "v0.1.3")
+  (source (origin
+            (method git-fetch)
+            (uri
+             (git-reference
+               (url "https://github.com/ccoors/Valeronoi";)
+               (commit version)))
+            (sha256
+             (base32
+              "1a866h37xmhrnl7hnkhdzjjm8dpjwhq0va2g6hdcp7y949d82ipp"))))
+  (build-system cmake-build-system)
+  (arguments
+    `(#:phases
+      (modify-phases %standard-phases
+                    (replace 'check
+                             (lambda* (#:key outputs #:allow-other-keys)
+                               (invoke "./valeronoi-tests"))))))
+  (inputs `(("qtbase" ,qtbase-5) ("qtsvg" ,qtsvg) ("openssl" ,openssl) 
("libxkbcommon" ,libxkbcommon) ("cgal" ,cgal) ("gmp" ,gmp) ("mpfr" ,mpfr) 
("boost" ,boost)))
+  (synopsis "WiFi mapping companion app for Valetudo")
+  (description "Valeronoi (Valetudo + Voronoi) is a companion for Valetudo for 
generating WiFi signal strength maps. It visualizes them using a Voronoi 
diagram.")
+  (home-page "https://github.com/ccoors/Valeronoi";)
+  (license license:gpl3)))
+
 (define-public volk
   (package
     (name "volk")
--
2.32.0





reply via email to

[Prev in Thread] Current Thread [Next in Thread]