seafile-client 9.0.2 -> 9.0.3 https://repology.org/project/seafile-client/versions attrpath: seafile-client Checking auto update branch... No auto update branch exists Old version 9.0.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , pkg-config , cmake , qtbase , qttools , libuuid , seafile-shared , jansson , libsearpc , withShibboleth ? true , qtwebengine , wrapQtAppsHook }: stdenv.mkDerivation rec { pname = "seafile-client"; version = "9.0.3"; src = fetchFromGitHub { owner = "haiwen"; repo = "seafile-client"; rev = "v${version}"; sha256 = "sha256-zoo34mhNZTEwxjSy8XgmZfEjkujmWj34OtDJQSCb/zk="; }; nativeBuildInputs = [ libuuid pkg-config cmake wrapQtAppsHook qttools ]; buildInputs = [ seafile-shared jansson libsearpc ] ++ lib.optional withShibboleth qtwebengine; cmakeFlags = lib.optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON"; qtWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ seafile-shared ]}" ]; meta = with lib; { homepage = "https://github.com/haiwen/seafile-client"; description = "Desktop client for Seafile, the Next-generation Open Source Cloud Storage"; license = licenses.asl20; platforms = platforms.linux; maintainers = with maintainers; [ schmittlauch greizgh ]; }; }