mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add multimon-ng.
* gnu/packages/radio.scm (multimon-ng): New variable.
This commit is contained in:
parent
f43e410470
commit
8fdd0da49c
1 changed files with 38 additions and 0 deletions
|
@ -1070,3 +1070,41 @@ (define-public rtl-433
|
|||
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+)))
|
||||
|
||||
(define-public multimon-ng
|
||||
(package
|
||||
(name "multimon-ng")
|
||||
(version "1.1.8")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/EliasOenal/multimon-ng.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1973xfyvzl1viz19zr83cgqlx5laxbjrca35rqabn6dlb6xb5xk8"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
`(("libx11" ,libx11)
|
||||
("pulseaudio" ,pulseaudio)))
|
||||
(arguments
|
||||
'(#:tests? #f)) ; No test suite
|
||||
(home-page "https://github.com/EliasOenal/multimon-ng")
|
||||
(synopsis "Decoder for digital radio transmission modes")
|
||||
(description "Multimon-ng can decode several digital radio transmission
|
||||
modes:
|
||||
@itemize
|
||||
@item POCSAG512, POCSAG1200, POCSAG2400
|
||||
@item FLEX
|
||||
@item EAS
|
||||
@item UFSK1200, CLIPFSK, AFSK1200, AFSK2400, AFSK2400_2, AFSK2400_3
|
||||
@item HAPN4800
|
||||
@item FSK9600
|
||||
@item DTMF
|
||||
@item ZVEI1, ZVEI2, ZVEI3, DZVEI, PZVEI
|
||||
@item EEA, EIA, CCIR
|
||||
@item MORSE CW
|
||||
@item X10
|
||||
@end itemize")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue