2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }:
|
2017-10-06 02:39:25 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-10 11:01:03 +01:00
|
|
|
pname = "tqsl";
|
2021-08-15 15:38:38 +02:00
|
|
|
version = "2.5.7";
|
2017-10-06 02:39:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-02-10 11:01:03 +01:00
|
|
|
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
|
2021-08-15 15:38:38 +02:00
|
|
|
sha256 = "sha256-0QlTUNwKeuuR+n8eT04kiywAsY3hrPGPYH1A84MmxIs=";
|
2017-10-06 02:39:25 +02:00
|
|
|
};
|
|
|
|
|
2020-12-31 08:48:55 +01:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
2017-10-06 02:39:25 +02:00
|
|
|
buildInputs = [
|
|
|
|
expat
|
|
|
|
openssl
|
|
|
|
zlib
|
|
|
|
db
|
|
|
|
curl
|
|
|
|
wxGTK
|
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-10-06 02:39:25 +02:00
|
|
|
description = "Software for using the ARRL Logbook of the World";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.arrl.org/tqsl-download";
|
2017-10-06 02:39:25 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.dpflug ];
|
|
|
|
};
|
|
|
|
}
|