2023-07-15 17:15:38 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, wxGTK32, wrapGAppsHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tqsl";
|
2023-04-12 12:48:02 +00:00
|
|
|
version = "2.6.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
|
2023-04-12 12:48:02 +00:00
|
|
|
sha256 = "sha256-UGPMp1mAarHWuLbZu2wWpjgCdf8ZKj0Mwkqp32U5/8w=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
nativeBuildInputs = [ cmake wrapGAppsHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [
|
|
|
|
expat
|
|
|
|
openssl
|
|
|
|
zlib
|
2023-07-15 17:15:38 +00:00
|
|
|
lmdb
|
2023-11-16 04:20:00 +00:00
|
|
|
curl
|
2022-10-21 18:38:19 +00:00
|
|
|
wxGTK32
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Software for using the ARRL Logbook of the World";
|
|
|
|
homepage = "https://www.arrl.org/tqsl-download";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.dpflug ];
|
|
|
|
};
|
|
|
|
}
|