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

30 lines
722 B
Nix
Raw Normal View History

2017-10-06 00:39:25 +00:00
{ stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }:
stdenv.mkDerivation rec {
pname = "tqsl";
2020-01-30 15:24:36 +00:00
version = "2.5.1";
2017-10-06 00:39:25 +00:00
src = fetchurl {
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
2020-01-30 15:24:36 +00:00
sha256 = "00v4n8pvi5qi2psjnrw611w5gg5bdlaxbsny535fsci3smyygpc0";
2017-10-06 00:39:25 +00:00
};
nativeBuildInputs = [ cmake makeWrapper ];
2017-10-06 00:39:25 +00:00
buildInputs = [
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";
2017-10-06 00:39:25 +00:00
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.dpflug ];
};
}