wxsqlite3: 4.8.2 -> 4.9.0

+5 -7
+4 -6
pkgs/development/libraries/wxsqlite3/default.nix
··· 8 8 , setfile 9 9 , rez 10 10 , derez 11 - , wxmac 12 11 }: 13 12 14 13 stdenv.mkDerivation rec { 15 14 pname = "wxsqlite3"; 16 - version = "4.8.2"; 15 + version = "4.9.0"; 17 16 18 17 src = fetchFromGitHub { 19 18 owner = "utelle"; 20 19 repo = "wxsqlite3"; 21 20 rev = "v${version}"; 22 - hash = "sha256-YoeCUyWVxpXY1QCTNONpv2QjV3rLZY84P6D3pXiWXo0="; 21 + hash = "sha256-9WnXaMpKzqJhdfT7ScOhULbOwJsmuiS0IpYDArWq82s="; 23 22 }; 24 23 25 24 nativeBuildInputs = [ autoreconfHook ]; 26 25 27 - buildInputs = [ sqlite ] 28 - ++ lib.optionals (!stdenv.isDarwin) [ wxGTK ] 29 - ++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez wxmac ]; 26 + buildInputs = [ sqlite wxGTK ] 27 + ++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez ]; 30 28 31 29 meta = with lib; { 32 30 homepage = "https://utelle.github.io/wxsqlite3/";
+1 -1
pkgs/top-level/all-packages.nix
··· 36895 36895 }; 36896 36896 36897 36897 wxsqlite3 = callPackage ../development/libraries/wxsqlite3 { 36898 - wxGTK = wxGTK30; 36898 + wxGTK = wxGTK32; 36899 36899 inherit (darwin.apple_sdk.frameworks) Cocoa; 36900 36900 inherit (darwin.stubs) setfile rez derez; 36901 36901 };