Unverified Commit 25c7520b authored by Maciej Krüger's avatar Maciej Krüger
Browse files

qlog: init at 0.29.2

parent 6d66dd91
Loading
Loading
Loading
Loading
+53 −0
Original line number Diff line number Diff line
{ fetchFromGitHub
, qtbase
, stdenv
, lib
, wrapQtAppsHook
, qmake
, qtcharts
, qtwebengine
, qtserialport
, qtwebchannel
, hamlib
, qtkeychain
, pkg-config
}:

stdenv.mkDerivation rec {
  pname = "qlog";
  version = "0.29.2";

  src = fetchFromGitHub {
    owner = "foldynl";
    repo = "QLog";
    rev = "v${version}";
    hash = "sha256-g7WgFQPMOaD+3YllZqpykslmPYT/jNVK7/1xaPdbti4=";
    fetchSubmodules = true;
  };

  env.NIX_LDFLAGS = "-lhamlib";

  buildInputs = [
    qtbase
    qtcharts
    qtwebengine
    qtserialport
    qtwebchannel
    hamlib
    qtkeychain
  ];

  nativeBuildInputs = [
    wrapQtAppsHook
    qmake
    pkg-config
  ];

  meta = with lib; {
    description = "Amateur radio logbook software";
    license = with licenses; [ gpl3Only ];
    homepage = "https://github.com/foldynl/QLog";
    maintainers = with maintainers; [ mkg20001 ];
    platforms = with platforms; unix;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12493,6 +12493,8 @@ with pkgs;
  qlcplus = libsForQt5.callPackage ../applications/misc/qlcplus { };
  qlog = qt6Packages.callPackage ../applications/radio/qlog { };
  qnial = callPackage ../development/interpreters/qnial { };
  quickbms = pkgsi686Linux.callPackage ../tools/archivers/quickbms { };