linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / wxsqlite3 / default.nix
blob8acd4e99636be8747a4b7d2ba65aefb89c989017
1 { lib, stdenv
2 , fetchFromGitHub
3 , autoreconfHook
4 , wxGTK
5 , sqlite
6 , darwin
7 }:
9 stdenv.mkDerivation rec {
10   pname = "wxsqlite3";
11   version = "4.6.2";
13   src = fetchFromGitHub {
14     owner = "utelle";
15     repo = "wxsqlite3";
16     rev = "v${version}";
17     sha256 = "10jlb4p3ahck9apcy2c2mrrjynv4c1dfwwbf1vwd8dl17pgv4kgs";
18   };
20   nativeBuildInputs = [ autoreconfHook ];
22   buildInputs = [ wxGTK sqlite ]
23     ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa darwin.stubs.setfile darwin.stubs.rez darwin.stubs.derez ];
25   meta = with lib; {
26     homepage = "https://utelle.github.io/wxsqlite3/";
27     description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
28     platforms = platforms.unix;
29     maintainers = with maintainers; [ vrthra ];
30     license = [ licenses.lgpl2 ];
31   };