summary refs log tree commit diff
path: root/pkgs/development/libraries/wxsqlite3/default.nix
blob: 88cf92b34ef000d8e35ca5585058f245ff7d9515 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}