nixpkgs/pkgs/applications/radio/tqsl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
763 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, expat, openssl, zlib, lmdb, curl, wxGTK32, wrapGAppsHook }:
2017-10-06 00:39:25 +00:00
stdenv.mkDerivation rec {
pname = "tqsl";
2023-04-04 03:22:34 +00:00
version = "2.6.5";
2017-10-06 00:39:25 +00:00
src = fetchurl {
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
2023-04-04 03:22:34 +00:00
sha256 = "sha256-UGPMp1mAarHWuLbZu2wWpjgCdf8ZKj0Mwkqp32U5/8w=";
2017-10-06 00:39:25 +00:00
};
nativeBuildInputs = [ cmake wrapGAppsHook ];
2017-10-06 00:39:25 +00:00
buildInputs = [
expat
openssl
zlib
lmdb
2022-07-04 14:03:29 +00:00
(curl.override { inherit openssl; })
2022-10-14 01:21:56 +00:00
wxGTK32
2017-10-06 00:39:25 +00:00
];
meta = with lib; {
2017-10-06 00:39:25 +00:00
description = "Software for using the ARRL Logbook of the World";
homepage = "https://www.arrl.org/tqsl-download";
2017-10-06 00:39:25 +00:00
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.dpflug ];
};
}