2017-04-08 04:35:21 +01:00
|
|
|
{ stdenv, fetchFromGitHub, wxGTK, sqlite
|
|
|
|
, darwin }:
|
2016-07-05 08:12:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wxsqlite3";
|
2016-07-05 08:12:35 +01:00
|
|
|
version = "3.3.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "utelle";
|
|
|
|
repo = "wxsqlite3";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha1 = "bb8p58g88nkdcsj3h4acx7h925n2cy9g";
|
|
|
|
};
|
|
|
|
|
2017-04-08 04:35:21 +01:00
|
|
|
preBuild = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
cp build28/Info.plist.in build28/wxmac.icns build/
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ wxGTK sqlite ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa darwin.stubs.setfile darwin.stubs.rez darwin.stubs.derez ];
|
2016-07-05 08:12:35 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00: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 ];
|
|
|
|
license = [ licenses.lgpl2 ];
|
|
|
|
};
|
|
|
|
}
|