gnu: Add direwolf.
* gnu/packages/radio.scm (direwolf): New variable.
This commit is contained in:
parent
3f95ac9188
commit
e6034e3cf8
@ -1188,3 +1188,43 @@ NanoVNA vector network analyzers.")
|
||||
(sometimes called DSSTV). It is compatible with most of MMSSTV and EasyPal.")
|
||||
(license (list license:gpl2+
|
||||
license:qwt1.0))))
|
||||
|
||||
(define-public direwolf
|
||||
(package
|
||||
(name "direwolf")
|
||||
(version "1.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/wb2osz/direwolf")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0xmz64m02knbrpasfij4rrq53ksxna5idxwgabcw4n2b1ig7pyx5"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
`(("alsa-lib" ,alsa-lib)
|
||||
("hamlib" ,hamlib)))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-paths
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(substitute* "conf/CMakeLists.txt"
|
||||
(("DESTINATION /etc")
|
||||
(string-append "DESTINATION "
|
||||
(assoc-ref outputs "out")
|
||||
"/etc"))))))))
|
||||
(home-page "https://github.com/wb2osz/direwolf")
|
||||
(synopsis "TNC for Amateur Packet Radio")
|
||||
(description
|
||||
"Dire Wolf is a Terminal Node Controller (TNC) for Amateur Packet Radio.
|
||||
It can perform as:
|
||||
@itemize
|
||||
@item APRS GPS tracker,
|
||||
@item Digipeater,
|
||||
@item Internet gateway (IGate)
|
||||
@item APRStt gateway
|
||||
@end itemize\n")
|
||||
(license license:gpl2+)))
|
||||
|
Loading…
Reference in New Issue
Block a user