2021-08-09 10:32:44 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-05-05 18:41:38 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, wxGTK
|
|
|
|
, sqlite
|
2021-08-09 10:32:44 +01:00
|
|
|
, Cocoa
|
|
|
|
, setfile
|
|
|
|
, rez
|
|
|
|
, derez
|
2020-05-05 18:41:38 +01:00
|
|
|
}:
|
2016-07-05 08:12:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wxsqlite3";
|
2021-08-14 10:40:42 +01:00
|
|
|
version = "4.7.3";
|
2016-07-05 08:12:35 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "utelle";
|
|
|
|
repo = "wxsqlite3";
|
|
|
|
rev = "v${version}";
|
2021-08-14 10:40:42 +01:00
|
|
|
sha256 = "sha256-t8y4oq4p7ZMDELAkRVmoNguYRNG8spcW7MHnpdINN8g=";
|
2016-07-05 08:12:35 +01:00
|
|
|
};
|
|
|
|
|
2020-05-05 18:41:38 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2017-04-08 04:35:21 +01:00
|
|
|
|
|
|
|
buildInputs = [ wxGTK sqlite ]
|
2021-08-09 10:32:44 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [ Cocoa setfile rez derez ];
|
2016-07-05 08:12:35 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://utelle.github.io/wxsqlite3/";
|
2016-07-05 08:12:35 +01:00
|
|
|
description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2021-08-09 10:32:44 +01:00
|
|
|
license = with licenses; [ lgpl3Plus gpl3Plus ];
|
2016-07-05 08:12:35 +01:00
|
|
|
};
|
|
|
|
}
|