mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
maestral-qt: format with nixfmt
This commit is contained in:
parent
d7535991e2
commit
025db4d957
@ -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";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user