41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, autoconf, automake, pkg-config, glib
|
|
, perl, ncurses5, hamlib, xmlrpc_c }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tlf";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "${pname}-${version}";
|
|
sha256 = "1xpgs4k27pjd9mianfknknp6mf34365bcp96wrv5xh4dhph573rj";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook autoconf automake pkg-config perl ];
|
|
buildInputs = [ glib ncurses5 hamlib xmlrpc_c ];
|
|
|
|
configureFlags = [ "--enable-hamlib" "--enable-fldigi-xmlrpc" ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib
|
|
ln -s ${ncurses5.out}/lib/libtinfo.so.5 $out/lib/libtinfo.so.5
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Advanced ham radio logging and contest program";
|
|
longDescription = ''
|
|
TLF is a curses based console mode general logging and contest program for
|
|
amateur radio.
|
|
|
|
It supports the CQWW, the WPX, the ARRL-DX, the ARRL-FD, the PACC and the
|
|
EU SPRINT shortwave contests (single operator) as well as a LOT MORE basic
|
|
contests, general QSO and DXpedition mode.
|
|
'';
|
|
homepage = "https://tlf.github.io/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ etu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|