otpclient 3.3.0 -> 3.5.1 https://github.com/paolostivanin/otpclient/releases attrpath: otpclient Checking auto update branch... An auto update branch exists with message `otpclient: 3.3.0 -> 3.5.0`. New version is 3.5.1. The auto update branch does not match or exceed the new version. Old version 3.3.0" not present in master derivation file with contents: { stdenv , lib , fetchFromGitHub , cmake , pkg-config , gtk3 , wrapGAppsHook , jansson , libgcrypt , libzip , libpng , libcotp , protobuf , protobufc , qrencode , libsecret , libuuid , zbar }: stdenv.mkDerivation rec { pname = "otpclient"; version = "3.5.0"; src = fetchFromGitHub { owner = "paolostivanin"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-MiWEnyhHo6+3woWi4Vf75s+cfzJSPE0xdnvuPbsxrsc="; }; nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ]; buildInputs = [ gtk3 jansson libcotp libgcrypt libpng libsecret libuuid libzip protobuf protobufc qrencode zbar ]; meta = with lib; { description = "Highly secure and easy to use OTP client written in C/GTK that supports both TOTP and HOTP"; homepage = "https://github.com/paolostivanin/OTPClient"; changelog = "https://github.com/paolostivanin/OTPClient/releases/tag/v${version}"; license = licenses.gpl3Only; maintainers = with maintainers; [ alexbakker ]; platforms = platforms.linux; }; }