guix-commits
[Top][All Lists]
Advanced

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

03/07: gnu: Add soapyrtlsdr.


From: guix-commits
Subject: 03/07: gnu: Add soapyrtlsdr.
Date: Sat, 5 Jun 2021 18:26:59 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit ee586c9437b59093603804e88410f1365c12d3b7
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Sat Jun 5 23:19:04 2021 +0200

    gnu: Add soapyrtlsdr.
    
    * gnu/packages/radio.scm (soapyrtlsdr): New variable.
---
 gnu/packages/radio.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 18545ba..0bc335d 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -312,6 +312,31 @@ defined radio hardware devices with a common API.")
      "This package provides HackRF devices support to the SoapySDR library.")
     (license license:expat)))
 
+(define-public soapyrtlsdr
+  (package
+    (name "soapyrtlsdr")
+    (version "0.3.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pothosware/SoapyRTLSDR";)
+             (commit (string-append "soapy-rtl-sdr-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1dlnryj6k20pk7w7v4v13y099r7ikhvlzbgzgphmi5cxkdv0shrd"))))
+    (build-system cmake-build-system)
+    (inputs
+     `(("rtl-sdr" ,rtl-sdr)
+       ("soapysdr" ,soapysdr)))
+    (arguments
+     `(#:tests? #f))  ; No test suite
+    (home-page "https://github.com/pothosware/SoapyRTLSDR/wiki";)
+    (synopsis "SoapySDR RTL-SDR module")
+    (description
+     "This package provides RTL-SDR devices support to the SoapySDR library.")
+    (license license:expat)))
+
 (define-public chirp
   (package
     (name "chirp")



reply via email to

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