python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / wxsqlite3 / default.nix
blob3b1c9ff22e8f2d7941aa96d58d38a81997275823
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 , wxGTK
6 , sqlite
7 , Cocoa
8 , setfile
9 , rez
10 , derez
13 stdenv.mkDerivation rec {
14   pname = "wxsqlite3";
15   version = "4.9.0";
17   src = fetchFromGitHub {
18     owner = "utelle";
19     repo = "wxsqlite3";
20     rev = "v${version}";
21     hash = "sha256-9WnXaMpKzqJhdfT7ScOhULbOwJsmuiS0IpYDArWq82s=";
22   };
24   nativeBuildInputs = [ autoreconfHook ];
26   buildInputs = [ sqlite wxGTK ]
27     ++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez ];
29   meta = with lib; {
30     homepage = "https://utelle.github.io/wxsqlite3/";
31     description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
32     platforms = platforms.unix;
33     maintainers = with maintainers; [ vrthra ];
34     license = with licenses; [ lgpl3Plus gpl3Plus ];
35   };