Merge pull request #195011 from wegank/wxsqlite3-4.9.0

wxsqlite3: 4.8.2 -> 4.9.0
This commit is contained in:
Sandro 2022-10-11 02:08:54 +02:00 committed by GitHub
commit 95d5226106
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions

View file

@ -8,25 +8,23 @@
, setfile
, rez
, derez
, wxmac
}:
stdenv.mkDerivation rec {
pname = "wxsqlite3";
version = "4.8.2";
version = "4.9.0";
src = fetchFromGitHub {
owner = "utelle";
repo = "wxsqlite3";
rev = "v${version}";
hash = "sha256-YoeCUyWVxpXY1QCTNONpv2QjV3rLZY84P6D3pXiWXo0=";
hash = "sha256-9WnXaMpKzqJhdfT7ScOhULbOwJsmuiS0IpYDArWq82s=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ sqlite ]
++ lib.optionals (!stdenv.isDarwin) [ wxGTK ]
++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez wxmac ];
buildInputs = [ sqlite wxGTK ]
++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez ];
meta = with lib; {
homepage = "https://utelle.github.io/wxsqlite3/";

View file

@ -37035,7 +37035,7 @@ with pkgs;
};
wxsqlite3 = callPackage ../development/libraries/wxsqlite3 {
wxGTK = wxGTK30;
wxGTK = wxGTK32;
inherit (darwin.apple_sdk.frameworks) Cocoa;
inherit (darwin.stubs) setfile rez derez;
};