guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add soapymultisdr.


From: guix-commits
Subject: 01/02: gnu: Add soapymultisdr.
Date: Thu, 23 Mar 2023 05:26:12 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit 2a0431e064f3508e6baaf6afe66a28b50ffd2651
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Thu Mar 23 09:51:38 2023 +0100

    gnu: Add soapymultisdr.
    
    * gnu/packages/radio.scm (soapymultisdr): 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 982f218977..15c068bd79 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -453,6 +453,31 @@ controls for certain tuners which may be paired with an 
audio device.")
        "This package provides HackRF devices support to the SoapySDR library.")
       (license license:expat))))
 
+(define-public soapymultisdr
+  (let ((commit "e8bd3298afaec04cb7ce2c8c516cb9cd8bd3bc9d")
+        (revision "1"))
+    (package
+      (name "soapymultisdr")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/pothosware/SoapyMultiSDR";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0f7d39s2zpgfi677i2aqp4zkf5c6cv8mpm7w8s7xj45bfhf94acl"))))
+      (build-system cmake-build-system)
+      (inputs
+       (list soapysdr))
+      (home-page "https://github.com/pothosware/SoapyMultiSDR";)
+      (synopsis "Multi-device support module for SoapySDR")
+      (description
+       "This is a SoapySDR module to use multiple supported devices under
+a single device wrapper.")
+      (license license:boost1.0))))
+
 (define-public soapyrtlsdr
   (package
     (name "soapyrtlsdr")



reply via email to

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