owncloud-client 2.11.0.8354 -> 3.2.1.10355 https://repology.org/project/owncloud-client/versions attrpath: owncloud-client Checking auto update branch... An auto update branch exists with message `owncloud-client: 2.11.0.8354 -> 2.11.1.8438`. New version is 3.2.1.10355. The auto update branch does not match or exceed the new version. Old version 2.11.0.8354" not present in master derivation file with contents: { lib , fetchFromGitHub , mkDerivation , pkg-config , cmake , extra-cmake-modules , callPackage , qtbase , qtkeychain , qttools , sqlite , libsecret }: mkDerivation rec { pname = "owncloud-client"; version = "3.2.1"; libregraph = callPackage ./libre-graph-api-cpp-qt-client.nix { }; src = fetchFromGitHub { owner = "owncloud"; repo = "client"; rev = "refs/tags/v${version}"; hash = "sha256-39tpvzlTy3KRxg8DzCQW2VnsaLqJ+dNQRur2TqRZytE="; }; nativeBuildInputs = [ pkg-config cmake extra-cmake-modules ]; buildInputs = [ qtbase qttools qtkeychain sqlite libsecret libregraph ]; qtWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libsecret ]}" ]; 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; { description = "Synchronise your ownCloud with your computer using this desktop client"; homepage = "https://owncloud.org"; maintainers = with maintainers; [ qknight hellwolf ]; platforms = platforms.unix; license = licenses.gpl2Plus; changelog = "https://github.com/owncloud/client/releases/tag/v${version}"; }; }