Merge pull request #16718 from vrthra/wxsqlite3

wxsqlite3: init at 3.3.1
This commit is contained in:
Arseniy Seroka 2016-07-05 13:04:12 +03:00 committed by GitHub
commit bf1013ae72
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, wxGTK, sqlite }:
stdenv.mkDerivation rec {
name = "wxsqlite3-${version}";
version = "3.3.1";
src = fetchFromGitHub {
owner = "utelle";
repo = "wxsqlite3";
rev = "v${version}";
sha1 = "bb8p58g88nkdcsj3h4acx7h925n2cy9g";
};
buildInputs = [ wxGTK sqlite ];
meta = with stdenv.lib; {
homepage = http://utelle.github.io/wxsqlite3/ ;
description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
platforms = platforms.unix;
maintainers = with maintainers; [ vrthra ];
license = [ licenses.lgpl2 ];
};
}

View File

@ -17200,6 +17200,10 @@ in
wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { };
wxsqlite3 = callPackage ../development/libraries/wxsqlite3 {
wxGTK = wxGTK30;
};
x2x = callPackage ../tools/X11/x2x { };
xboxdrv = callPackage ../misc/drivers/xboxdrv { };