diff --git a/pkgs/by-name/ne/nextcloud-client/package.nix b/pkgs/by-name/ne/nextcloud-client/package.nix index ed826e8d441c..c60b3bcfa1aa 100644 --- a/pkgs/by-name/ne/nextcloud-client/package.nix +++ b/pkgs/by-name/ne/nextcloud-client/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { pname = "nextcloud-client"; - version = "3.16.6"; + version = "3.17.0"; outputs = [ "out" @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { owner = "nextcloud-releases"; repo = "desktop"; tag = "v${version}"; - hash = "sha256-f6+FwYVwuG89IjEQMOepTJEgJGXp9nmQNuAGU4proq4="; + hash = "sha256-NbnC6rbpHJvPOufyNaf36JMpKE5IN4vXSLJWkrINtk8="; }; patches = [ @@ -42,6 +42,9 @@ stdenv.mkDerivation rec { ]; postPatch = '' + substituteInPlace CMakeLists.txt \ + --replace-fail '"''${SYSTEMD_USER_UNIT_DIR}"' "\"$out/lib/systemd/user\"" + for file in src/libsync/vfs/*/CMakeLists.txt; do substituteInPlace $file \ --replace-fail "PLUGINDIR" "KDE_INSTALL_PLUGINDIR" @@ -89,10 +92,6 @@ stdenv.mkDerivation rec { "-DMIRALL_VERSION_SUFFIX=" # remove git suffix from version ]; - postBuild = '' - make doc-man - ''; - passthru.updateScript = gitUpdater { rev-prefix = "v"; }; meta = {