[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add valeronoi.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add valeronoi. |
Date: |
Fri, 03 Dec 2021 15:38:51 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 269baba gnu: Add valeronoi.
269baba is described below
commit 269baba919886961979d91670f9f755daa6ce160
Author: phodina <phodina@protonmail.com>
AuthorDate: Fri Dec 3 21:37:32 2021 +0100
gnu: Add valeronoi.
* gnu/packages/engineering.scm (valeronoi): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/engineering.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 50f265f..2040215 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -25,6 +25,7 @@
;;; Copyright © 2021 Gerd Heber <gerd.heber@gmail.com>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2021 Ivan Gankevich <i.gankevich@spbu.ru>
+;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -129,6 +130,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
@@ -1156,6 +1158,44 @@ 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 "0.1.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/ccoors/Valeronoi")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1zp653bjqsyixa5j1pp9k12iqsl8dz72yyi38asxmcym1wngsjcd"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "./valeronoi-tests")))))))
+ (inputs
+ `(("boost" ,boost)
+ ("cgal" ,cgal)
+ ("gmp" ,gmp)
+ ("libxkbcommon" ,libxkbcommon)
+ ("mpfr" ,mpfr)
+ ("openssl" ,openssl)
+ ("qtbase" ,qtbase-5)
+ ("qtsvg" ,qtsvg)))
+ (home-page "https://github.com/ccoors/Valeronoi")
+ (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.")
+ (license license:gpl3+)))
+
(define-public volk
(package
(name "volk")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add valeronoi.,
guix-commits <=