gnu: Add gqrx-scanner.
* gnu/packages/radio.scm (gqrx-scanner): New variable.
This commit is contained in:
parent
2e652e687e
commit
99ea070274
1 changed files with 24 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2017, 2018, 2019, 2020, 2022 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2017, 2018, 2019, 2020, 2022 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2019, 2020 Christopher Howard <christopher@librehacker.com>
|
;;; Copyright © 2019, 2020 Christopher Howard <christopher@librehacker.com>
|
||||||
;;; Copyright © 2019, 2020 Evan Straw <evan.straw99@gmail.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 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
;;; Copyright © 2020 Charlie Ritter <chewzerita@posteo.net>
|
;;; Copyright © 2020 Charlie Ritter <chewzerita@posteo.net>
|
||||||
;;; Copyright © 2020–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2020–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
@ -1027,6 +1027,29 @@ using GNU Radio and the Qt GUI toolkit.")
|
||||||
(home-page "https://gqrx.dk/")
|
(home-page "https://gqrx.dk/")
|
||||||
(license license:gpl3+)))
|
(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
|
(define-public fldigi
|
||||||
(package
|
(package
|
||||||
(name "fldigi")
|
(name "fldigi")
|
||||||
|
|
Reference in a new issue