lol

nextcloud-client: 3.16.6 -> 3.17.0 (#433415)

authored by

Sandro and committed by
GitHub
48ce06dd a05a770b

+5 -6
+5 -6
pkgs/by-name/ne/nextcloud-client/package.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "nextcloud-client"; 26 - version = "3.16.6"; 26 + version = "3.17.0"; 27 27 28 28 outputs = [ 29 29 "out" ··· 34 34 owner = "nextcloud-releases"; 35 35 repo = "desktop"; 36 36 tag = "v${version}"; 37 - hash = "sha256-f6+FwYVwuG89IjEQMOepTJEgJGXp9nmQNuAGU4proq4="; 37 + hash = "sha256-NbnC6rbpHJvPOufyNaf36JMpKE5IN4vXSLJWkrINtk8="; 38 38 }; 39 39 40 40 patches = [ ··· 42 42 ]; 43 43 44 44 postPatch = '' 45 + substituteInPlace CMakeLists.txt \ 46 + --replace-fail '"''${SYSTEMD_USER_UNIT_DIR}"' "\"$out/lib/systemd/user\"" 47 + 45 48 for file in src/libsync/vfs/*/CMakeLists.txt; do 46 49 substituteInPlace $file \ 47 50 --replace-fail "PLUGINDIR" "KDE_INSTALL_PLUGINDIR" ··· 88 91 "-DCMAKE_INSTALL_LIBDIR=lib" # expected to be prefix-relative by build code setting RPATH 89 92 "-DMIRALL_VERSION_SUFFIX=" # remove git suffix from version 90 93 ]; 91 - 92 - postBuild = '' 93 - make doc-man 94 - ''; 95 94 96 95 passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 97 96