mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
Merge: nextcloud-client: 3.13.4 -> 3.14.0 (#341969)
This commit is contained in:
commit
999b808eb5
@ -16,7 +16,7 @@ index 887213f09..c66468306 100644
|
|||||||
<< QLatin1String("Name=") << guiName << QLatin1Char('\n')
|
<< QLatin1String("Name=") << guiName << QLatin1Char('\n')
|
||||||
<< QLatin1String("GenericName=") << QLatin1String("File Synchronizer\n")
|
<< QLatin1String("GenericName=") << QLatin1String("File Synchronizer\n")
|
||||||
- << QLatin1String("Exec=\"") << executablePath << "\" --background\n"
|
- << QLatin1String("Exec=\"") << executablePath << "\" --background\n"
|
||||||
+ << QLatin1String("Exec=") << "nextcloud --background" << endl
|
+ << QLatin1String("Exec=") << "nextcloud --background\n"
|
||||||
<< QLatin1String("Terminal=") << "false\n"
|
<< QLatin1String("Terminal=") << "false\n"
|
||||||
<< QLatin1String("Icon=") << APPLICATION_ICON_NAME << QLatin1Char('\n')
|
<< QLatin1String("Icon=") << APPLICATION_ICON_NAME << QLatin1Char('\n')
|
||||||
<< QLatin1String("Categories=") << QLatin1String("Network\n")
|
<< QLatin1String("Categories=") << QLatin1String("Network\n")
|
||||||
|
@ -4,20 +4,20 @@
|
|||||||
, cmake
|
, cmake
|
||||||
, extra-cmake-modules
|
, extra-cmake-modules
|
||||||
, inotify-tools
|
, inotify-tools
|
||||||
|
, kdePackages
|
||||||
, libcloudproviders
|
, libcloudproviders
|
||||||
, librsvg
|
, librsvg
|
||||||
, libsecret
|
, libsecret
|
||||||
, openssl
|
, openssl
|
||||||
, pcre
|
, pcre
|
||||||
, pkg-config
|
, pkg-config
|
||||||
|
, qt5compat
|
||||||
, qtbase
|
, qtbase
|
||||||
, qtkeychain
|
, qtkeychain
|
||||||
|
, qtsvg
|
||||||
, qttools
|
, qttools
|
||||||
, qtwebengine
|
, qtwebengine
|
||||||
, qtwebsockets
|
, qtwebsockets
|
||||||
, qtquickcontrols2
|
|
||||||
, qtgraphicaleffects
|
|
||||||
, plasma5Packages
|
|
||||||
, sphinx
|
, sphinx
|
||||||
, sqlite
|
, sqlite
|
||||||
, xdg-utils
|
, xdg-utils
|
||||||
@ -26,15 +26,15 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "nextcloud-client";
|
pname = "nextcloud-client";
|
||||||
version = "3.13.4";
|
version = "3.14.0";
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nextcloud-releases";
|
owner = "nextcloud-releases";
|
||||||
repo = "desktop";
|
repo = "desktop";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-anQwIqWtHdKFfUuCekiyrdg9xzxcs5bVJ0VDMtyVfw8=";
|
hash = "sha256-/jRD0swNs59xugsXLbesGcTtyGdc/y/iwiDVoErW+d4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
|
|||||||
postPatch = ''
|
postPatch = ''
|
||||||
for file in src/libsync/vfs/*/CMakeLists.txt; do
|
for file in src/libsync/vfs/*/CMakeLists.txt; do
|
||||||
substituteInPlace $file \
|
substituteInPlace $file \
|
||||||
--replace "PLUGINDIR" "KDE_INSTALL_PLUGINDIR"
|
--replace-fail "PLUGINDIR" "KDE_INSTALL_PLUGINDIR"
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@ -61,17 +61,17 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
inotify-tools
|
inotify-tools
|
||||||
|
kdePackages.kio
|
||||||
libcloudproviders
|
libcloudproviders
|
||||||
libsecret
|
libsecret
|
||||||
openssl
|
openssl
|
||||||
pcre
|
pcre
|
||||||
plasma5Packages.kio
|
qt5compat
|
||||||
qtbase
|
qtbase
|
||||||
qtkeychain
|
qtkeychain
|
||||||
|
qtsvg
|
||||||
qttools
|
qttools
|
||||||
qtwebengine
|
qtwebengine
|
||||||
qtquickcontrols2
|
|
||||||
qtgraphicaleffects
|
|
||||||
qtwebsockets
|
qtwebsockets
|
||||||
sqlite
|
sqlite
|
||||||
];
|
];
|
||||||
@ -93,6 +93,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
changelog = "https://github.com/nextcloud/desktop/releases/tag/v${version}";
|
||||||
description = "Nextcloud themed desktop client";
|
description = "Nextcloud themed desktop client";
|
||||||
homepage = "https://nextcloud.com";
|
homepage = "https://nextcloud.com";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
@ -10554,7 +10554,7 @@ with pkgs;
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
nextcloud-client = libsForQt5.callPackage ../applications/networking/nextcloud-client { };
|
nextcloud-client = qt6Packages.callPackage ../applications/networking/nextcloud-client { };
|
||||||
|
|
||||||
nextcloud-news-updater = callPackage ../servers/nextcloud/news-updater.nix { };
|
nextcloud-news-updater = callPackage ../servers/nextcloud/news-updater.nix { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user