gnu: sdr++: Update to 1.1.0-1.b89fdba.
* gnu/packages/radio.scm (sdr++): Update to 1.1.0-1.b89fdba. [inputs]: Add zstd:lib. Remove labels. [arguments]: Use gexps.
This commit is contained in:
parent
cdd83a5014
commit
d9dc1eb7ba
1 changed files with 50 additions and 47 deletions
|
@ -2515,53 +2515,56 @@ various hardware.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public sdr++
|
(define-public sdr++
|
||||||
(package
|
(let ((commit "b89fdba433cf6aa0dab424a06974a0b45abf6c4a")
|
||||||
(name "sdr++")
|
(revision "1"))
|
||||||
(version "1.0.4")
|
(package
|
||||||
(source
|
(name "sdr++")
|
||||||
(origin
|
(version (git-version "1.1.0" revision commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://github.com/AlexandreRouma/SDRPlusPlus")
|
(method git-fetch)
|
||||||
(commit version)))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/AlexandreRouma/SDRPlusPlus")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32 "1xwbz6yyca6wmzad5ykxw6i0r8jzc7i3jbzq7mhp8caiymd6knw3"))))
|
(file-name (git-file-name name version))
|
||||||
(build-system cmake-build-system)
|
(sha256
|
||||||
(native-inputs
|
(base32 "11l1ja3dwxa67rp09x4rr5pd6rh6amn48z5vv6dygspq64w63hp2"))))
|
||||||
(list pkg-config))
|
(build-system cmake-build-system)
|
||||||
(inputs
|
(native-inputs
|
||||||
`(("airspyhf" ,airspyhf)
|
(list pkg-config))
|
||||||
("alsa-lib" ,alsa-lib)
|
(inputs
|
||||||
("codec2" ,codec2)
|
(list airspyhf
|
||||||
("fftwf" ,fftwf)
|
alsa-lib
|
||||||
("glew" ,glew)
|
codec2
|
||||||
("glfw" ,glfw)
|
fftwf
|
||||||
("hackrf" ,hackrf)
|
glew
|
||||||
("jack" ,jack-2)
|
glfw
|
||||||
("libusb" ,libusb)
|
hackrf
|
||||||
("pulseaudio" ,pulseaudio)
|
jack-2
|
||||||
("rtaudio" ,rtaudio)
|
libusb
|
||||||
("rtl-sdr" ,rtl-sdr)
|
pulseaudio
|
||||||
("soapysdr" ,soapysdr)
|
rtaudio
|
||||||
("volk" ,volk)))
|
rtl-sdr
|
||||||
(arguments
|
soapysdr
|
||||||
`(#:tests? #f ; No test suite.
|
volk
|
||||||
#:configure-flags '("-DOPT_BUILD_AIRSPY_SOURCE=OFF"
|
(list zstd "lib")))
|
||||||
"-DOPT_BUILD_PLUTOSDR_SOURCE=OFF"
|
(arguments
|
||||||
"-DOPT_BUILD_M17_DECODER=ON")
|
(list #:tests? #f ; No test suite.
|
||||||
#:phases
|
#:configure-flags #~(list "-DOPT_BUILD_AIRSPY_SOURCE=OFF"
|
||||||
(modify-phases %standard-phases
|
"-DOPT_BUILD_PLUTOSDR_SOURCE=OFF"
|
||||||
(add-after 'unpack 'fix-paths
|
"-DOPT_BUILD_M17_DECODER=ON")
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
#:phases
|
||||||
(substitute* "CMakeLists.txt"
|
#~(modify-phases %standard-phases
|
||||||
(("/usr")
|
(add-after 'unpack 'fix-paths
|
||||||
(assoc-ref outputs "out"))))))))
|
(lambda _
|
||||||
(home-page "https://github.com/AlexandreRouma/SDRPlusPlus")
|
(substitute* "CMakeLists.txt"
|
||||||
(synopsis "Software defined radio software")
|
(("/usr")
|
||||||
(description
|
#$output)))))))
|
||||||
"SDR++ is a software defined radio software for various hardware.")
|
(home-page "https://github.com/AlexandreRouma/SDRPlusPlus")
|
||||||
(license license:gpl3+)))
|
(synopsis "Software defined radio software")
|
||||||
|
(description
|
||||||
|
"SDR++ is a software defined radio software for various hardware.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public inspectrum
|
(define-public inspectrum
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue