mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add rtl-443.
* gnu/packages/radio.scm (rtl-433): New variable.
This commit is contained in:
parent
cef0e08c23
commit
232f2d2634
1 changed files with 26 additions and 0 deletions
|
@ -1031,3 +1031,29 @@ (define-public dump1090
|
|||
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+)))
|
||||
|
|
Loading…
Reference in a new issue