2022-11-30T13:38:43 wxsqlite3 4.9.0 -> 4.9.1 https://github.com/utelle/wxsqlite3/releases 2022-11-30T13:38:45 attrpath: wxsqlite3 2022-11-30T13:38:45 Checking auto update branch... 2022-11-30T13:38:45 No auto update branch exists 2022-11-30T13:38:46 Old version 4.9.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , autoreconfHook , wxGTK , sqlite , Cocoa , setfile , rez , derez }: stdenv.mkDerivation rec { pname = "wxsqlite3"; version = "4.9.1"; src = fetchFromGitHub { owner = "utelle"; repo = "wxsqlite3"; rev = "v${version}"; hash = "sha256-n7m94QdQf0s5I9z8ScpCu+r2h7XOKO2F1OX44IjdBn4="; }; nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ sqlite wxGTK ] ++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez ]; meta = with lib; { homepage = "https://utelle.github.io/wxsqlite3/"; description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets"; platforms = platforms.unix; maintainers = with maintainers; [ vrthra ]; license = with licenses; [ lgpl3Plus gpl3Plus ]; }; }