Skip to content

Commit

Permalink
owncloud-client: 5.3.1 -> 5.3.2 (NixOS#378553)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Feb 2, 2025
2 parents 13df180 + a9c69c0 commit 75c8548
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions pkgs/by-name/ow/owncloud-client/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,47 @@
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
qt6Packages,
# nativeBuildInputs
pkg-config,
cmake,
extra-cmake-modules,
qt6,
qt6Packages,
# buildInputs
sqlite,
libsecret,
libre-graph-api-cpp-qt-client,
kdsingleapplication,
# darwin only:
## darwin only
libinotify-kqueue,
sparkleshare,
}:

stdenv.mkDerivation rec {
pname = "owncloud-client";
version = "5.3.1";
version = "5.3.2";

src = fetchFromGitHub {
owner = "owncloud";
repo = "client";
tag = "v${version}";
hash = "sha256-ot+2hxipeZ5eI6nPJ8XGE8gFMNQoblUq+koAFZpZDv4=";
hash = "sha256-HEnjtedmdNJTpc/PmEyoEsLGUydFkVF3UAsSdzQ4L1Q=";
};

nativeBuildInputs = [
pkg-config
cmake
extra-cmake-modules
qt6.qttools
qt6.wrapQtAppsHook
qt6Packages.qttools
qt6Packages.wrapQtAppsHook
];

buildInputs =
[
sqlite
libsecret
qt6.qtbase
qt6.qtsvg # Needed for the systray icon
qt6Packages.qtbase
qt6Packages.qtsvg # Needed for the systray icon
qt6Packages.qtkeychain
libre-graph-api-cpp-qt-client
kdsingleapplication
Expand All @@ -50,6 +52,8 @@ stdenv.mkDerivation rec {
sparkleshare
];

passthru.updateScript = nix-update-script { };

meta = with lib; {
description = "Synchronise your ownCloud with your computer using this desktop client";
homepage = "https://owncloud.org";
Expand Down

0 comments on commit 75c8548

Please sign in to comment.