2017-10-06 02:39:25 +02:00
|
|
|
{ stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-10 11:01:03 +01:00
|
|
|
pname = "tqsl";
|
2019-09-29 08:28:46 +02:00
|
|
|
version = "2.4.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";
|
2019-09-29 08:28:46 +02:00
|
|
|
sha256 = "1i33bk3annz4rnjc58knprfajq1pbyjqyrhygqybvl7bsp70c5ri";
|
2017-10-06 02:39:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [
|
|
|
|
cmake
|
|
|
|
expat
|
|
|
|
openssl
|
|
|
|
zlib
|
|
|
|
db
|
|
|
|
curl
|
|
|
|
wxGTK
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Software for using the ARRL Logbook of the World";
|
2019-02-10 11:01:03 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|