gnu: Add gqrx-scanner.

* gnu/packages/radio.scm (gqrx-scanner): New variable.
This commit is contained in:
Guillaume Le Vaillant 2023-01-16 11:40:42 +01:00
parent 2e652e687e
commit 99ea070274
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F

View File

@ -2,7 +2,7 @@
;;; Copyright © 2017, 2018, 2019, 2020, 2022 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2019, 2020 Christopher Howard <christopher@librehacker.com>
;;; Copyright © 2019, 2020 Evan Straw <evan.straw99@gmail.com>
;;; Copyright © 2020, 2021, 2022 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2020, 2021, 2022, 2023 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
;;; Copyright © 2020 Charlie Ritter <chewzerita@posteo.net>
;;; Copyright © 20202022 Tobias Geerinckx-Rice <me@tobias.gr>
@ -1027,6 +1027,29 @@ using GNU Radio and the Qt GUI toolkit.")
(home-page "https://gqrx.dk/")
(license license:gpl3+)))
(define-public gqrx-scanner
(package
(name "gqrx-scanner")
(version "1.0.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/neural75/gqrx-scanner")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ar8kqfrd768l6y4kqgq3467xckrrpaq8zlwzz5l7lp8r41w5plr"))))
(build-system cmake-build-system)
(arguments
'(#:tests? #f)) ; No test suite
(synopsis "Frequency scanner for Gqrx")
(description
"This package provides a frequency scanner for the Gqrx software-defined
radio receiver.")
(home-page "https://github.com/neural75/gqrx-scanner")
(license license:expat)))
(define-public fldigi
(package
(name "fldigi")