summary refs log tree commit diff
path: root/pkgs/development/libraries/libzdb/default.nix
blob: 4a5aa057a5cf841cf48da5330c5b6aa926bdefb2 (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
24
{stdenv, fetchurl, sqlite}:

stdenv.mkDerivation rec
{
  version = "3.1";
  name = "libzdb-${version}";

  src = fetchurl
  {
    url = "http://www.tildeslash.com/libzdb/dist/libzdb-${version}.tar.gz";
    sha256 = "1596njvy518x7vsvsykmnk1ky82x8jxd6nmmp551y6hxn2qsn08g";
  };

  buildInputs = [ sqlite ];

  meta =
  {
    homepage = http://www.tildeslash.com/libzdb/;
    description = "A small, easy to use Open Source Database Connection Pool Library";
    license = stdenv.lib.licenses.gpl3;
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ ];
  };
}