63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
qtbase,
|
|
stdenv,
|
|
lib,
|
|
wrapQtAppsHook,
|
|
qmake,
|
|
qtcharts,
|
|
qtwebengine,
|
|
qtserialport,
|
|
qtwebchannel,
|
|
hamlib,
|
|
qtkeychain,
|
|
pkg-config,
|
|
cups,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qlog";
|
|
version = "0.40.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "foldynl";
|
|
repo = "QLog";
|
|
rev = "v${version}";
|
|
hash = "sha256-mG2OUw1sB2bd4XiEXP5CblfpeZZNVqQ7310wepCZqbI=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
env.NIX_LDFLAGS = "-lhamlib";
|
|
|
|
buildInputs =
|
|
[
|
|
qtbase
|
|
qtcharts
|
|
qtwebengine
|
|
qtserialport
|
|
qtwebchannel
|
|
hamlib
|
|
qtkeychain
|
|
]
|
|
++ (lib.optionals stdenv.hostPlatform.isDarwin [
|
|
cups
|
|
]);
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
qmake
|
|
pkg-config
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Amateur radio logbook software";
|
|
mainProgram = "qlog";
|
|
license = with licenses; [ gpl3Only ];
|
|
homepage = "https://github.com/foldynl/QLog";
|
|
maintainers = with maintainers; [
|
|
oliver-koss
|
|
mkg20001
|
|
];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|