nixpkgs/pkgs/applications/radio/tqsl/default.nix
R. RyanTM a3e14710ea tqsl: 2.4.3 -> 2.4.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tqsl/versions
2019-09-28 23:28:46 -07:00

31 lines
724 B
Nix

{ stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }:
stdenv.mkDerivation rec {
pname = "tqsl";
version = "2.4.7";
src = fetchurl {
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
sha256 = "1i33bk3annz4rnjc58knprfajq1pbyjqyrhygqybvl7bsp70c5ri";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
cmake
expat
openssl
zlib
db
curl
wxGTK
];
meta = with stdenv.lib; {
description = "Software for using the ARRL Logbook of the World";
homepage = https://www.arrl.org/tqsl-download;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.dpflug ];
};
}