nixpkgs/pkgs/applications/radio/tqsl/default.nix
John Titor e65f0049d1
tqsl: 2.6.5 -> 2.7.2
add new required dependency sqlite3
2024-04-08 00:15:25 +05:30

32 lines
776 B
Nix

{ lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, sqlite, wxGTK32, wrapGAppsHook }:
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 wrapGAppsHook ];
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 ];
};
}