summary refs log tree commit diff
path: root/pkgs/applications/radio
diff options
context:
space:
mode:
authorpulsation <philippe.sam-long@laposte.net>2020-11-03 22:33:42 +0100
committerpulsation <philippe.sam-long@laposte.net>2020-11-17 16:33:23 +0100
commit0a15ad3eb932d8047c0a213c339c88836e6f462c (patch)
tree34fa38f237609066fb65e2ac40c5446d3be0e237 /pkgs/applications/radio
parent224e1d52993b185db81c4865e8a5755bba115852 (diff)
downloadnixpkgs-0a15ad3eb932d8047c0a213c339c88836e6f462c.tar
nixpkgs-0a15ad3eb932d8047c0a213c339c88836e6f462c.tar.gz
nixpkgs-0a15ad3eb932d8047c0a213c339c88836e6f462c.tar.bz2
nixpkgs-0a15ad3eb932d8047c0a213c339c88836e6f462c.tar.lz
nixpkgs-0a15ad3eb932d8047c0a213c339c88836e6f462c.tar.xz
nixpkgs-0a15ad3eb932d8047c0a213c339c88836e6f462c.tar.zst
nixpkgs-0a15ad3eb932d8047c0a213c339c88836e6f462c.zip
klog: init at 1.3.2
Diffstat (limited to 'pkgs/applications/radio')
-rw-r--r--pkgs/applications/radio/klog/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/radio/klog/default.nix b/pkgs/applications/radio/klog/default.nix
new file mode 100644
index 00000000000..8a062c591b5
--- /dev/null
+++ b/pkgs/applications/radio/klog/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, hamlib, pkgconfig, qt5, qtbase, qttools, qtserialport, qtcharts, qmake, wrapQtAppsHook }:
+
+stdenv.mkDerivation rec {
+  pname = "klog";
+  version = "1.3.2";
+
+  src = fetchurl {
+    url = "https://download.savannah.nongnu.org/releases/klog/${pname}-${version}.tar.gz";
+    sha256 = "1d5x7rq0mgfrqws3q1y4z8wh2qa3gvsmd0ssf2yqgkyq3fhdrb5c";
+  };
+
+  nativeBuildInputs = [ pkgconfig wrapQtAppsHook qmake qttools ];
+  buildInputs = [ hamlib qtbase qtserialport qtcharts ];
+
+  qmakeFlags = [ "KLog.pro" ];
+
+  meta = with stdenv.lib; {
+    description = "A multiplatform free hamradio logger";
+    longDescription = ''
+      KLog provides QSO management, useful QSL management DX-Cluster client, DXCC management,
+      ClubLog integration, WSJT-X, DX-Marathon support and much more.
+      '';
+    homepage = "https://www.klog.xyz/";
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ pulsation ];
+  };
+}