diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-04-16 12:34:45 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2023-04-17 17:19:29 +0200 |
commit | d3ce8833043073e69f94352ceec3ed3466f1b0fe (patch) | |
tree | 8c72cbac9ea6cebf156a5a9b4d4ad122d3881caa /gnu | |
parent | 00b5c37e3422c8502fa3f52ef3acc6d3b08be463 (diff) |
gnu: wfview: Update to 1.62.
* gnu/packages/radio.scm (wfview): Update to 1.62.
Use Gexp, shift order of components.
[inputs]: Add hidapi, qtgamepad.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/radio.scm | 51 |
1 files changed, 30 insertions, 21 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 8192aefb0f..02509ea146 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -2591,7 +2591,7 @@ software-defined radio receivers.") (define-public wfview (package (name "wfview") - (version "1.50") + (version "1.62") (source (origin (method git-fetch) @@ -2600,37 +2600,46 @@ software-defined radio receivers.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1djgn1z4hibzci53mrvskz47jfq6hk8lhhqckpa93pvsi9kadl4k")))) + (base32 "0rrj6h5k8plq4m6fd2yxargfhqcwkxv6bdp4rmgh6bs4prl4wvwd")))) (build-system qt-build-system) + (arguments + (list + #:tests? #f ; No test suite. + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-paths + (lambda _ + (substitute* "wfview.pro" + (("\\.\\./wfview/") + "../")) + (substitute* '("wfmain.cpp") + (("/usr/share") + (string-append #$output "/share"))))) + (replace 'configure + (lambda _ + (mkdir-p "build") + (chdir "build") + (invoke "qmake" + (string-append "PREFIX=" #$output) + "../wfview.pro")))))) + ;; XXX: During the build it complains on missing git and hostname commands + ;; but it successfully finishes the build. (inputs (list eigen + hidapi opus portaudio pulseaudio qcustomplot + ;; TODO: Needs to be renamed to qtgamepad-5 when version 6 is + ;; packed. + qtgamepad qtbase-5 qtmultimedia-5 + ;; TODO: Needs to be renamed to qtserialport-5. when version 6 is + ;; packed. qtserialport rtaudio)) - (arguments - `(#:tests? #f ; No test suite. - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-paths - (lambda* (#:key outputs #:allow-other-keys) - (substitute* "wfview.pro" - (("\\.\\./wfview/") - "../")) - (substitute* '("wfmain.cpp") - (("/usr/share") - (string-append (assoc-ref outputs "out") "/share"))))) - (replace 'configure - (lambda* (#:key outputs #:allow-other-keys) - (mkdir-p "build") - (chdir "build") - (invoke "qmake" - (string-append "PREFIX=" (assoc-ref outputs "out")) - "../wfview.pro")))))) (home-page "https://wfview.org/") (synopsis "Software to control Icom radios") (description |