tqsl: 2.6.5 -> 2.7.2

add new required dependency sqlite3
This commit is contained in:
John Titor 2024-04-08 00:11:02 +05:30
parent 676d292622
commit e65f0049d1
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0
1 changed files with 4 additions and 3 deletions

View File

@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, wxGTK32, wrapGAppsHook }:
{ lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, sqlite, wxGTK32, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "tqsl";
version = "2.6.5";
version = "2.7.2";
src = fetchurl {
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
sha256 = "sha256-UGPMp1mAarHWuLbZu2wWpjgCdf8ZKj0Mwkqp32U5/8w=";
sha256 = "sha256-T4NBCUTYHT6ugSg1gSfjQBOBndqwSwyWLr/qlDPQGKI=";
};
nativeBuildInputs = [ cmake wrapGAppsHook ];
@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
zlib
lmdb
curl
sqlite
wxGTK32
];