forked from mirrors/nixpkgs
wxsqlite3: init at 3.3.1
This commit is contained in:
parent
65364cc83c
commit
86e2cd9066
23
pkgs/development/libraries/wxsqlite3/default.nix
Normal file
23
pkgs/development/libraries/wxsqlite3/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue