nextcloud-client: 3.16.6 -> 3.17.0

The docs got moved to a website, so we cannot build them anymore.
This commit is contained in:
Sandro Jäckel 2025-08-13 16:36:25 +02:00
parent 6f2facfedf
commit 8b67302405
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -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 = {