about summary refs log tree commit diff
path: root/pkgs/applications/radio/tqsl/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/radio/tqsl/default.nix')
-rw-r--r--pkgs/applications/radio/tqsl/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/radio/tqsl/default.nix b/pkgs/applications/radio/tqsl/default.nix
new file mode 100644
index 0000000000000..ce0fbf0e16dc1
--- /dev/null
+++ b/pkgs/applications/radio/tqsl/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }:
+
+stdenv.mkDerivation rec {
+  pname = "tqsl";
+  version = "2.4.3";
+
+  src = fetchurl {
+    url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
+    sha256 = "0f8pa5wnp0x0mjjr5kanka9hirgmp5wf6jsb95dc6hjlzlvy6kz9";
+  };
+
+  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 ];
+  };
+}