[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: Add soapybladerf.
From: |
guix-commits |
Subject: |
02/08: gnu: Add soapybladerf. |
Date: |
Tue, 3 Oct 2023 03:55:26 -0400 (EDT) |
glv pushed a commit to branch master
in repository guix.
commit 18ee78a9996a97413ed65c1bbb0b0618f9b4ed1d
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Sat Sep 30 11:28:06 2023 +0200
gnu: Add soapybladerf.
* gnu/packages/radio.scm (soapybladerf): New variable.
---
gnu/packages/radio.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 58e1895799..58b6ca33dc 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -503,6 +503,30 @@ library. It also adds hamlib support, which provides
basic gain and frequency
controls for certain tuners which may be paired with an audio device.")
(license license:expat))))
+(define-public soapybladerf
+ (let ((commit "85f6dc554ed4c618304d99395b19c4e1523675b0")
+ (revision "1"))
+ (package
+ (name "soapybladerf")
+ (version (git-version "0.4.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pothosware/SoapyBladeRF")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05c5mv1b55jv7dcr740hv4b3gplfaqryflfvprhlkm7bycr8pp16"))))
+ (build-system cmake-build-system)
+ (inputs (list bladerf soapysdr))
+ (arguments (list #:tests? #f)) ; No test suite
+ (home-page "https://github.com/pothosware/SoapyBladeRF/wiki")
+ (synopsis "SoapySDR BladeRF module")
+ (description "This package provides BladeRF devices support to the
+SoapySDR library.")
+ (license license:lgpl2.1+))))
+
(define-public soapyhackrf
;; Some fixes are not yet in a tagged release.
(let ((commit "6c0c33f0aa44c3080674e6bca0273184d3e9eb44")
- branch master updated (abf7a1e986 -> d69c557d64), guix-commits, 2023/10/03
- 03/08: gnu: gr-osmosdr: Add support for BladeRF and IQ balance correction., guix-commits, 2023/10/03
- 01/08: gnu: Add bladerf., guix-commits, 2023/10/03
- 02/08: gnu: Add soapybladerf.,
guix-commits <=
- 04/08: gnu: dump1090: Add support for BladeRF., guix-commits, 2023/10/03
- 07/08: gnu: urh: Add support for Airspy and BladeRF., guix-commits, 2023/10/03
- 08/08: gnu: satdump: Add support for BladeRF., guix-commits, 2023/10/03
- 05/08: gnu: sdrangel: Add support for BladeRF., guix-commits, 2023/10/03
- 06/08: gnu: sdr++: Add support for BladeRF., guix-commits, 2023/10/03