guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add rx-tools.


From: guix-commits
Subject: branch master updated: gnu: Add rx-tools.
Date: Sat, 25 Sep 2021 07:57:32 -0400

This is an automated email from the git hooks/post-receive script.

glv pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 45e132e  gnu: Add rx-tools.
45e132e is described below

commit 45e132ee7a54f4b94e3b63d6edcbcfd1c9723193
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Sat Sep 25 12:07:04 2021 +0200

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

diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 3d9a76a..7707fcf 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -2340,6 +2340,37 @@ this package.  E.g.: @code{(udev-rules-service 'rfcat 
rfcat)}")
       (license (list license:bsd-3
                      license:gpl2)))))
 
+(define-public rx-tools
+  ;; No tagged release since 2016, use commit instead.
+  (let ((commit "811b21c4c8a592515279bd19f7460c6e4ff0551c")
+        (revision "1"))
+    (package
+      (name "rx-tools")
+      (version (git-version "1.0.3" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/rxseger/rx_tools";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0qr8q00cv6q0ikjrph0qh07mlbvgk4yimccpkn3ir8ib5ma0r9sr"))))
+      (build-system cmake-build-system)
+      (inputs
+       `(("soapysdr" ,soapysdr)))
+      (arguments
+       `(#:tests? #f)) ; No test suite.
+      (home-page "https://github.com/rxseger/rx_tools";)
+      (synopsis "Command line programs for receiving data from SDRs")
+      (description
+       "This package provides the @code{rx_fm}, @code{rx_power} and
+@code{rx_sdr} tools for receiving data from SDRs, based on @code{rtl_fm},
+@code{rtl_power} and @code{rtl_sdr} from RTL-SDR, but using the SoapySDR
+vendor-neutral SDR support library instead, intended to support a wider range
+of devices than RTL-SDR.")
+      (license license:gpl2+))))
+
 (define-public gnss-sdr
   (package
     (name "gnss-sdr")



reply via email to

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