diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2020-04-15 19:44:41 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2020-04-15 22:35:14 +0200 |
commit | 8080c03d14ccdd7897a902966ea4aeea8dbfd359 (patch) | |
tree | 777be1f09e0d0c3e71237582962ee0afd34a0898 /gnu | |
parent | 72f6ee0e15a12a616cfe70805ce297aa9a66285d (diff) | |
download | patches-8080c03d14ccdd7897a902966ea4aeea8dbfd359.tar patches-8080c03d14ccdd7897a902966ea4aeea8dbfd359.tar.gz |
gnu: Add flrig.
* gnu/packages/radio.scm (flrig): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/radio.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 7afb06210d..1cee3ba594 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -560,3 +560,31 @@ connecting the microphone and headphone connections of a computer to some radio hardware.") (home-page "http://www.w1hkj.com/") (license license:gpl3+))) + +(define-public flrig + (package + (name "flrig") + (version "1.3.50") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.w1hkj.com/files/flrig/flrig-" + version ".tar.gz")) + (sha256 + (base32 "0fzrknzzi8kmzmrcfpc8rxr7v4a4ny6z6z5q5qwh95sp2kn2qzp9")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("fltk" ,fltk) + ("libx11" ,libx11) + ("libxext" ,libxext) + ("libxfixes" ,libxfixes) + ("libxft" ,libxft))) + (synopsis "Radio transceiver control program") + (description + "Flrig is a transceiver control program for amateur radio use. +It provides computer aided control of various radios using a serial +or USB connection.") + (home-page "http://www.w1hkj.com/") + (license license:gpl3+))) |