diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2021-02-11 19:12:36 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2021-02-11 19:12:36 +0100 |
commit | abd318ff4b741eac11227778bf2e569ee7b186ff (patch) | |
tree | 6abc09a3e01914d891124e9d0dda0f4e0979c485 /gnu/packages/radio.scm | |
parent | 71cb6dfe10540718eb337e7e2248fc809394894b (diff) | |
parent | c5dc87fee840ad620b01637dc4f9ffa5efc9270c (diff) | |
download | guix-abd318ff4b741eac11227778bf2e569ee7b186ff.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/radio.scm')
-rw-r--r-- | gnu/packages/radio.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index bbf7fb8d57..1409e05483 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -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+))) |