maestral-qt: format with nixfmt

This commit is contained in:
Stefan Frijters 2024-07-09 23:18:00 +02:00
parent d7535991e2
commit 025db4d957
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F

View File

@ -1,11 +1,12 @@
{ lib
, fetchFromGitHub
, python3
, qtbase
, qtsvg
, qtwayland
, nixosTests
, wrapQtAppsHook
{
lib,
fetchFromGitHub,
python3,
qtbase,
qtsvg,
qtwayland,
nixosTests,
wrapQtAppsHook,
}:
python3.pkgs.buildPythonApplication rec {
@ -22,9 +23,7 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-VkJOKKYnoXux3WjD1JwINGWwv1SMIXfidyV2ITE7dJc=";
};
build-system = with python3.pkgs; [
setuptools
];
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [
click
@ -37,12 +36,10 @@ python3.pkgs.buildPythonApplication rec {
buildInputs = [
qtwayland
qtbase
qtsvg # Needed for the systray icon
qtsvg # Needed for the systray icon
];
nativeBuildInputs = [
wrapQtAppsHook
];
nativeBuildInputs = [ wrapQtAppsHook ];
dontWrapQtApps = true;
@ -67,7 +64,10 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://maestral.app";
changelog = "https://github.com/samschott/maestral/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg sfrijters ];
maintainers = with maintainers; [
peterhoeg
sfrijters
];
platforms = platforms.linux;
mainProgram = "maestral_qt";
};