owncloud: 3.2.1 -> 4.0.0

This commit is contained in:
Miao, ZhiCheng 2023-05-15 17:47:49 +03:00
parent 7091454bd1
commit 696596a8a0
No known key found for this signature in database
GPG Key ID: 1080B4863AD0F5D1
2 changed files with 4 additions and 7 deletions

View File

@ -14,7 +14,7 @@
mkDerivation rec {
pname = "owncloud-client";
version = "3.2.1";
version = "4.0.0";
libregraph = callPackage ./libre-graph-api-cpp-qt-client.nix { };
@ -22,7 +22,7 @@ mkDerivation rec {
owner = "owncloud";
repo = "client";
rev = "refs/tags/v${version}";
hash = "sha256-39tpvzlTy3KRxg8DzCQW2VnsaLqJ+dNQRur2TqRZytE=";
hash = "sha256-KZ/e8ISQ4FNgT/mtKSlOCa3WQ0lRSaqNIhQn6al6NSM=";
};
nativeBuildInputs = [ pkg-config cmake extra-cmake-modules ];
@ -35,9 +35,6 @@ mkDerivation rec {
cmakeFlags = [
"-UCMAKE_INSTALL_LIBDIR"
"-DNO_SHIBBOLETH=1"
# https://github.com/owncloud/client/issues/10537#issuecomment-1447965096
# NB! From 4.0 it may be turned off by default
"-DWITH_AUTO_UPDATER=OFF"
];
meta = with lib; {

View File

@ -7,13 +7,13 @@
mkDerivation rec {
pname = "libre-graph-api-cpp-qt-client";
version = "0.13.2";
version = "1.0.4";
src = fetchFromGitHub {
owner = "owncloud";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-gbrA8P+ukQAiF2czC2szw3fJv1qoPJyMQ72t7PqB5/s=";
hash = "sha256-wbdamPi2XSLWeprrYZtBUDH1A2gdp6/5geFZv+ZqSWk=";
};
sourceRoot = "source/client";