mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-12-23 23:34:52 +01:00
nongnu: Add soapysdrplay3.
* nongnu/packages/radio.scm (soapysdrplay3): New variable. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
3cd26caff1
commit
8043bdc3ca
1 changed files with 28 additions and 0 deletions
|
@ -16,7 +16,11 @@
|
|||
(define-module (nongnu packages radio)
|
||||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages radio)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix licenses)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (ice-9 match)
|
||||
|
@ -92,3 +96,27 @@ package. E.g.: @code{(udev-rules-service 'sdrplay sdrplay)}")
|
|||
(license (nonfree (string-append "file:///share/doc/sdrplay-"
|
||||
version
|
||||
"/license.txt")))))
|
||||
|
||||
(define-public soapysdrplay3
|
||||
(package
|
||||
(name "soapysdrplay3")
|
||||
(version "0.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/pothosware/SoapySDRPlay3")
|
||||
(commit (string-append "soapy-sdrplay3-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0kp5gz03c29kxclaqijpyqknaijlbldrhy04mn98vnli9g1h1isq"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
(list sdrplay soapysdr))
|
||||
(arguments
|
||||
`(#:tests? #f)) ; No test suite
|
||||
(home-page "https://github.com/pothosware/SoapySDRPlay3/wiki")
|
||||
(synopsis "SoapySDR SDRplay module")
|
||||
(description "This package provides SDRplay devices support to the
|
||||
SoapySDR library.")
|
||||
(license expat)))
|
||||
|
|
Loading…
Reference in a new issue