blob: bf6ee947785e982b392edff80b5272378b53ad20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, sqlite, wxGTK32, wrapGAppsHook3 }:
stdenv.mkDerivation rec {
pname = "tqsl";
version = "2.7.2";
src = fetchurl {
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
sha256 = "sha256-T4NBCUTYHT6ugSg1gSfjQBOBndqwSwyWLr/qlDPQGKI=";
};
nativeBuildInputs = [ cmake wrapGAppsHook3 ];
buildInputs = [
expat
openssl
zlib
lmdb
curl
sqlite
wxGTK32
];
meta = with lib; {
description = "Software for using the ARRL Logbook of the World";
mainProgram = "tqsl";
homepage = "https://www.arrl.org/tqsl-download";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.dpflug ];
};
}
|