about summary refs log tree commit diff
path: root/pkgs/applications/radio/tqsl/default.nix
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-02-10 11:01:03 +0100
committerElis Hirwing <elis@hirwing.se>2019-02-10 11:01:03 +0100
commitd3390e50822460f3d23270b2c6eb2a44a8e7a33d (patch)
treee531a43fd4f1c4bc8560a6d9aa1312875320f012 /pkgs/applications/radio/tqsl/default.nix
parent1540ab34befecf78f7ab8209100ebde317cd33e0 (diff)
tqsl: 2.3.1 -> 2.4.3
Changelog:
https://www.arrl.org/files/file/LoTW%20Instructions/TrustedQSL-2-4-3-release.pdf
Diffstat (limited to 'pkgs/applications/radio/tqsl/default.nix')
-rw-r--r--pkgs/applications/radio/tqsl/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/applications/radio/tqsl/default.nix b/pkgs/applications/radio/tqsl/default.nix
index f001cbcaab92d..ce0fbf0e16dc1 100644
--- a/pkgs/applications/radio/tqsl/default.nix
+++ b/pkgs/applications/radio/tqsl/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, makeWrapper, cmake, expat, openssl, zlib, db, curl, wxGTK }:
 
 stdenv.mkDerivation rec {
-  name = "tqsl-${version}";
-  version = "2.3.1";
+  pname = "tqsl";
+  version = "2.4.3";
 
   src = fetchurl {
-    url = "https://www.arrl.org/files/file/LoTW%20Instructions/${name}.tar.gz";
-    sha256 = "10cjlilampwl10hwb7m28m5z9gyrscvvc1rryfjnhj9q2x4ppgxv";
+    url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz";
+    sha256 = "0f8pa5wnp0x0mjjr5kanka9hirgmp5wf6jsb95dc6hjlzlvy6kz9";
   };
 
   nativeBuildInputs = [ makeWrapper ];
@@ -20,11 +20,9 @@ stdenv.mkDerivation rec {
     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/;
+    homepage = https://www.arrl.org/tqsl-download;
     license = licenses.bsd3;
     platforms = platforms.linux;
     maintainers = [ maintainers.dpflug ];