wxsqlite3 4.9.8 -> 4.9.9 https://repology.org/project/wxsqlite3/versions attrpath: wxsqlite3 Checking auto update branch... No auto update branch exists Old version 4.9.8" 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.9"; src = fetchFromGitHub { owner = "utelle"; repo = "wxsqlite3"; rev = "v${version}"; hash = "sha256-YvQEAqiXwooCxUIZbIYhccbpVjYeFIp6d3dLeUP1RpE="; }; 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 ]; }; }