1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-09 06:30:36 +02:00

gnu: qdmr: Update to 0.13.1

* gnu/packages/radio.scm (qdmr): Update to 0.13.1
  [inputs]: Replace qtbase-5, qtlocation-5 and qtserialport-5 by qtbase,
  qtpositioning and qtserialport.
  [native-inputs]: Replace qttools-5 by qttools. Add librsvg.

Closes: guix/guix#4258
Change-Id: I51c8da9fc8a00ce9331731565103f8f88bc794c1
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Ryan Tolboom
2025-11-15 18:41:50 -05:00
committed by Guillaume Le Vaillant
parent c4b23c5c3f
commit 2b7096452c

View File

@@ -3616,7 +3616,7 @@ memory contents between them.")
(define-public qdmr
(package
(name "qdmr")
(version "0.12.1")
(version "0.13.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -3625,7 +3625,7 @@ memory contents between them.")
(file-name (git-file-name name version))
(sha256
(base32
"08g00xwdqchc21nmacw45s65k8hnk8450yavjb1dx8kmd31kds79"))))
"18c76axcvjnqkx4xkgyifyj3sk08a8maddz6159gpbkhsn5xsgjp"))))
(build-system cmake-build-system)
(arguments
(list #:tests? #f ;no tests
@@ -3636,8 +3636,8 @@ memory contents between them.")
(substitute* "lib/CMakeLists.txt"
(("(DESTINATION \")/etc/udev/" _ directive)
(string-append directive #$output "/lib/udev/"))))))))
(inputs (list libusb qtbase-5 qtlocation-5 qtserialport-5 yaml-cpp))
(native-inputs (list qttools-5))
(inputs (list libusb qtbase qtpositioning qtserialport yaml-cpp))
(native-inputs (list qttools librsvg))
(home-page "https://dm3mat.darc.de/qdmr/")
(synopsis "GUI application and command line tool to program DMR radios")
(description
@@ -3647,5 +3647,5 @@ Programming Software (CPS) bundled with these radios but aims to be a more
universal tool.
To install the qdmr udev rules, you must extend @code{udev-service-type} with this
package. E.g.: @code{(udev-rules-service 'qdmr qdmr)}")
package. E.g.: @code{(udev-rules-service 'qdmr qdmr)}.")
(license license:gpl3+)))