guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/06: gnu: Add soapyairspy.


From: guix-commits
Subject: 02/06: gnu: Add soapyairspy.
Date: Sat, 22 Jul 2023 04:23:47 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit b4a0f6283266cdc681e2f3bc93a558f5dc2a26ea
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Sat Jul 22 09:26:27 2023 +0200

    gnu: Add soapyairspy.
    
    * gnu/packages/radio.scm (soapyairspy): 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 7efbc93d7c..fef39996c8 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -400,6 +400,30 @@ with this package.  E.g.: @code{(udev-rules-service 
'airspyhf airspyhf)}")
 defined radio hardware devices with a common API.")
     (license license:boost1.0)))
 
+(define-public soapyairspy
+  (package
+    (name "soapyairspy")
+    (version "0.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pothosware/SoapyAirspy";)
+             (commit (string-append "soapy-airspy-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0g23yybnmq0pg2m8m7dbhif8lw0hdsmnnjym93fdyxfk5iln7fsc"))))
+    (build-system cmake-build-system)
+    (inputs
+     (list airspy soapysdr))
+    (arguments
+     (list #:tests? #f))  ; No test suite
+    (home-page "https://github.com/pothosware/SoapyAirspy/wiki";)
+    (synopsis "SoapySDR Airspy module")
+    (description "This package provides Airspy devices support to the
+SoapySDR library.")
+    (license license:expat)))
+
 (define-public soapyairspyhf
   (package
     (name "soapyairspyhf")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]