guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: valeronoi: Reformat with guix style.


From: guix-commits
Subject: 03/03: gnu: valeronoi: Reformat with guix style.
Date: Tue, 17 Oct 2023 04:43:41 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 0e467b7b0bc02860f2819e4eaf74f5cdae7e2cd1
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Oct 17 11:21:54 2023 +0300

    gnu: valeronoi: Reformat with guix style.
    
    * gnu/packages/engineering.scm (valeronoi): Process package with guix
    style.
---
 gnu/packages/engineering.scm | 83 +++++++++++++++++++++-----------------------
 1 file changed, 40 insertions(+), 43 deletions(-)

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index e30face9e1..80fd9ac141 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -1357,50 +1357,47 @@ the 'showing the effect of'-style of operation.")
     (license license:gpl2+)))
 
 (define-public valeronoi
-(package
-  (name "valeronoi")
-  (version "0.2.0")
-  (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 "1qkhrqkjsmm0h1bxf2ihkqfhdr18xx5x1i2ds1mla13zm0bw2570"))
-     (snippet
-      #~(begin (use-modules (guix build utils))
-               (delete-file-recursively "3rdparty")
-               (substitute* '("tests/test_colormap.cpp"
-                              "tests/test_main.cpp")
-                (("catch\\.hpp") "catch2/catch.hpp"))))))
-  (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
-   (list boost
-         cgal
-         gmp
-         libxkbcommon
-         mpfr
-         openssl
-         qtbase
-         qtsvg))
-  (native-inputs
-   (list catch2))
-  (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
+  (package
+    (name "valeronoi")
+    (version "0.2.0")
+    (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 "1qkhrqkjsmm0h1bxf2ihkqfhdr18xx5x1i2ds1mla13zm0bw2570"))
+       (snippet #~(begin
+                    (use-modules (guix build utils))
+                    (delete-file-recursively "3rdparty")
+                    (substitute* '("tests/test_colormap.cpp"
+                                   "tests/test_main.cpp")
+                      (("catch\\.hpp")
+                       "catch2/catch.hpp"))))))
+    (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 (list boost
+                  cgal
+                  gmp
+                  libxkbcommon
+                  mpfr
+                  openssl
+                  qtbase
+                  qtsvg))
+    (native-inputs (list catch2))
+    (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+)))
+    (license license:gpl3+)))
 
 (define-public volk
   (package



reply via email to

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