From 1540ab34befecf78f7ab8209100ebde317cd33e0 Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Sun, 10 Feb 2019 10:55:33 +0100 Subject: tqsl: Move from misc to radio --- pkgs/applications/radio/tqsl/default.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/applications/radio/tqsl/default.nix (limited to 'pkgs/applications/radio/tqsl/default.nix') diff --git a/pkgs/applications/radio/tqsl/default.nix b/pkgs/applications/radio/tqsl/default.nix new file mode 100644 index 0000000000000..f001cbcaab92d --- /dev/null +++ b/pkgs/applications/radio/tqsl/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }: + +stdenv.mkDerivation rec { + name = "tqsl-${version}"; + version = "2.3.1"; + + src = fetchurl { + url = "https://www.arrl.org/files/file/LoTW%20Instructions/${name}.tar.gz"; + sha256 = "10cjlilampwl10hwb7m28m5z9gyrscvvc1rryfjnhj9q2x4ppgxv"; + }; + + nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ + cmake + expat + openssl + zlib + db + curl + wxGTK + ]; + + patches = [ ./cmake_lib_path.patch ]; + + meta = with stdenv.lib; { + description = "Software for using the ARRL Logbook of the World"; + homepage = https://lotw.arrl.org/; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = [ maintainers.dpflug ]; + }; +} -- cgit 1.4.1