Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / radio / klog / default.nix
blob248561b3ee139a6308d5c691c5f084bdf26f4b43
1 { lib, stdenv, fetchurl, hamlib, pkg-config, qtbase, qttools, qtserialport, qtcharts, qmake, wrapQtAppsHook }:
3 stdenv.mkDerivation rec {
4   pname = "klog";
5   version = "1.3.2";
7   src = fetchurl {
8     url = "https://download.savannah.nongnu.org/releases/klog/${pname}-${version}.tar.gz";
9     sha256 = "1d5x7rq0mgfrqws3q1y4z8wh2qa3gvsmd0ssf2yqgkyq3fhdrb5c";
10   };
12   nativeBuildInputs = [ pkg-config wrapQtAppsHook qmake qttools ];
13   buildInputs = [ hamlib qtbase qtserialport qtcharts ];
15   qmakeFlags = [ "KLog.pro" ];
17   meta = with lib; {
18     description = "A multiplatform free hamradio logger";
19     longDescription = ''
20       KLog provides QSO management, useful QSL management DX-Cluster client, DXCC management,
21       ClubLog integration, WSJT-X, DX-Marathon support and much more.
22       '';
23     homepage = "https://www.klog.xyz/";
24     license = licenses.gpl2Plus;
25     platforms = platforms.linux;
26     maintainers = with maintainers; [ pulsation ];
27   };