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
719 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }:
2017-10-06 00:39:25 +00:00
stdenv.mkDerivation rec {
pname = "tqsl";
2022-01-02 18:06:25 +00:00
version = "2.5.9";
2017-10-06 00:39:25 +00:00
src = fetchurl {
url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
2022-01-02 18:06:25 +00:00
sha256 = "sha256-flv7tI/SYAxxJsHFa3QUgnO0glAAQF87EgP4wyTWnNU=";
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 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 ];
};
}