From ae102bbaac9ce4d109424bbfa7bb23483358390b Mon Sep 17 00:00:00 2001 From: "Miao, ZhiCheng" Date: Thu, 26 Oct 2023 23:46:39 +0300 Subject: owncloud-client: 4.2.0 -> 5.0.0 - 5.0.0 adds new a new local dependency: kdsingleapplication - 5.0.0 starts to use Qt6 - Qt6 requires qt6.qtsvg for tray icon support - move all packages under by-name --- pkgs/by-name/ow/owncloud-client/package.nix | 57 +++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 pkgs/by-name/ow/owncloud-client/package.nix (limited to 'pkgs/by-name/ow') diff --git a/pkgs/by-name/ow/owncloud-client/package.nix b/pkgs/by-name/ow/owncloud-client/package.nix new file mode 100644 index 000000000000..5edbd5d0f6b8 --- /dev/null +++ b/pkgs/by-name/ow/owncloud-client/package.nix @@ -0,0 +1,57 @@ +{ lib +, stdenv +, fetchFromGitHub +, pkg-config +, cmake +, extra-cmake-modules +, qt6 +, qt6Packages +, sqlite +, libsecret +, libre-graph-api-cpp-qt-client +, kdsingleapplication +# darwin only: +, libinotify-kqueue +, sparkleshare +}: + +stdenv.mkDerivation rec { + pname = "owncloud-client"; + version = "5.0.0"; + + src = fetchFromGitHub { + owner = "owncloud"; + repo = "client"; + rev = "refs/tags/v${version}"; + hash = "sha256-SSMNmWrCT1sGa38oY8P84QNedNkQPcIRWrV9B65B5X8="; + }; + + nativeBuildInputs = [ + pkg-config + cmake + extra-cmake-modules + qt6.qttools + qt6.wrapQtAppsHook + ]; + + buildInputs = [ + sqlite + libsecret + qt6.qtbase + qt6.qtsvg # Needed for the systray icon + qt6Packages.qtkeychain + libre-graph-api-cpp-qt-client + kdsingleapplication + ] ++ lib.optionals stdenv.isDarwin [ + libinotify-kqueue sparkleshare + ]; + + meta = with lib; { + description = "Synchronise your ownCloud with your computer using this desktop client"; + homepage = "https://owncloud.org"; + maintainers = with maintainers; [ qknight hellwolf ]; + platforms = platforms.unix; + license = licenses.gpl2Plus; + changelog = "https://github.com/owncloud/client/releases/tag/v${version}"; + }; +} -- cgit 1.4.1