guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add rtl-443.


From: guix-commits
Subject: branch master updated: gnu: Add rtl-443.
Date: Mon, 11 May 2020 07:34:13 -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 232f2d2  gnu: Add rtl-443.
232f2d2 is described below

commit 232f2d2634074201967a47935aa80665cc5e6bbe
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Mon May 11 13:31:16 2020 +0200

    gnu: Add rtl-443.
    
    * gnu/packages/radio.scm (rtl-433): New variable.
---
 gnu/packages/radio.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 3d393f8..41105fb 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -1031,3 +1031,29 @@ It can be used to decode the ADS-B signals that planes 
emit to indicate
 their position, altitude, speed, etc.")
     (home-page "https://github.com/flightaware/dump1090";)
     (license license:bsd-3)))
+
+(define-public rtl-433
+  (package
+    (name "rtl-433")
+    (version "20.02")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/merbanan/rtl_433.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "11991xky9gawkragdyg27qsf7kw5bhlg7ygvf3fn7ng00x4xbh1z"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("libusb" ,libusb)
+       ("rtl-sdr" ,rtl-sdr)))
+    (synopsis "Decoder for radio transmissions in ISM bands")
+    (description
+     "This is a generic data receiver, mainly for decoding radio transmissions
+from devices on the 433 MHz, 868 MHz, 315 MHz, 345 MHz and 915 MHz ISM bands.")
+    (home-page "https://github.com/merbanan/rtl_433";)
+    (license license:gpl2+)))



reply via email to

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