2024-05-15 15:35:15 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, sqlite, wxGTK32, wrapGAppsHook3 }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tqsl";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "2.7.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
|
2024-05-15 15:35:15 +00:00
|
|
|
sha256 = "sha256-Ca9PsytjPvrU4u+b/x6pIbQc8CDNWI6hNM6jF60Bds8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
nativeBuildInputs = [ cmake wrapGAppsHook3 ];
|
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
|
2024-04-21 15:54:59 +00:00
|
|
|
sqlite
|
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";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "tqsl";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://www.arrl.org/tqsl-download";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.dpflug ];
|
|
|
|
};
|
|
|
|
}
|