70 lines
1.6 KiB
Nix
70 lines
1.6 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
, qtbase
|
|
, qtsvg
|
|
, qtwayland
|
|
, nixosTests
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "maestral-qt";
|
|
version = "1.9.3";
|
|
disabled = python3.pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SamSchott";
|
|
repo = "maestral-qt";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-7Lt0Neobtofd1JDoz8BhGn+nFKaMLbM/6z0QQmtEKpA=";
|
|
};
|
|
|
|
format = "pyproject";
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
click
|
|
markdown2
|
|
maestral
|
|
packaging
|
|
pyqt6
|
|
];
|
|
|
|
buildInputs = [
|
|
qtwayland
|
|
qtbase
|
|
qtsvg # Needed for the systray icon
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
makeWrapperArgs = with python3.pkgs; [
|
|
# Firstly, add all necessary QT variables
|
|
"\${qtWrapperArgs[@]}"
|
|
|
|
# Add the installed directories to the python path so the daemon can find them
|
|
"--prefix PYTHONPATH : ${makePythonPath (requiredPythonModules maestral.propagatedBuildInputs)}"
|
|
"--prefix PYTHONPATH : ${makePythonPath [ maestral ]}"
|
|
];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "maestral_qt" ];
|
|
|
|
passthru.tests.maestral = nixosTests.maestral;
|
|
|
|
meta = with lib; {
|
|
description = "GUI front-end for maestral (an open-source Dropbox client) for Linux";
|
|
homepage = "https://maestral.app";
|
|
changelog = "https://github.com/samschott/maestral/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg sfrijters ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "maestral_qt";
|
|
};
|
|
}
|