2021-08-10 14:31:46 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-05-15 21:57:56 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, wxGTK
|
|
|
|
, sqlite
|
2021-08-10 14:31:46 +00:00
|
|
|
, Cocoa
|
|
|
|
, setfile
|
|
|
|
, rez
|
|
|
|
, derez
|
2020-05-15 21:57:56 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "wxsqlite3";
|
2024-06-20 14:57:18 +00:00
|
|
|
version = "4.9.11";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "utelle";
|
|
|
|
repo = "wxsqlite3";
|
|
|
|
rev = "v${version}";
|
2024-06-20 14:57:18 +00:00
|
|
|
hash = "sha256-aX1YU35ATL+f18tGIba6cgNYZvYm3TshHsN7RFD+vI4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-05-15 21:57:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
buildInputs = [ sqlite wxGTK ]
|
|
|
|
++ lib.optionals (stdenv.isDarwin) [ Cocoa setfile rez derez ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://utelle.github.io/wxsqlite3/";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "C++ wrapper around the public domain SQLite 3.x for wxWidgets";
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2021-08-10 14:31:46 +00:00
|
|
|
license = with licenses; [ lgpl3Plus gpl3Plus ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|