wxsqlite3: 4.8.2 -> 4.9.0
This commit is contained in:
parent
a989aa4619
commit
f1f98cc18f
2 changed files with 5 additions and 7 deletions
|
@ -8,25 +8,23 @@
|
||||||
, setfile
|
, setfile
|
||||||
, rez
|
, rez
|
||||||
, derez
|
, derez
|
||||||
, wxmac
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "wxsqlite3";
|
pname = "wxsqlite3";
|
||||||
version = "4.8.2";
|
version = "4.9.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "utelle";
|
owner = "utelle";
|
||||||
repo = "wxsqlite3";
|
repo = "wxsqlite3";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-YoeCUyWVxpXY1QCTNONpv2QjV3rLZY84P6D3pXiWXo0=";
|
hash = "sha256-9WnXaMpKzqJhdfT7ScOhULbOwJsmuiS0IpYDArWq82s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
buildInputs = [ sqlite ]
|
buildInputs = [ sqlite wxGTK ]
|
||||||
++ lib.optionals (!stdenv.isDarwin) [ wxGTK ]
|
++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez ];
|
||||||
++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez wxmac ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://utelle.github.io/wxsqlite3/";
|
homepage = "https://utelle.github.io/wxsqlite3/";
|
||||||
|
|
|
@ -36895,7 +36895,7 @@ with pkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
wxsqlite3 = callPackage ../development/libraries/wxsqlite3 {
|
wxsqlite3 = callPackage ../development/libraries/wxsqlite3 {
|
||||||
wxGTK = wxGTK30;
|
wxGTK = wxGTK32;
|
||||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||||
inherit (darwin.stubs) setfile rez derez;
|
inherit (darwin.stubs) setfile rez derez;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue