mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #195011 from wegank/wxsqlite3-4.9.0
wxsqlite3: 4.8.2 -> 4.9.0
This commit is contained in:
commit
95d5226106
2 changed files with 5 additions and 7 deletions
|
@ -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/";
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue