2021-02-05 17:12:51 +00:00
|
|
|
{lib, stdenv, fetchurl, sqlite}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec
|
|
|
|
{
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "3.4.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "libzdb";
|
|
|
|
|
|
|
|
src = fetchurl
|
|
|
|
{
|
|
|
|
url = "https://www.tildeslash.com/libzdb/dist/libzdb-${version}.tar.gz";
|
2024-09-19 14:19:46 +00:00
|
|
|
sha256 = "sha256-q9Z1cZvL3eQwqk7hOXW5gNVdKry1zCKAgqMDIKa7nw8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ sqlite ];
|
|
|
|
|
|
|
|
meta =
|
|
|
|
{
|
|
|
|
homepage = "http://www.tildeslash.com/libzdb/";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Small, easy to use Open Source Database Connection Pool Library";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
platforms = lib.platforms.linux;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = [ ];
|
|
|
|
};
|
|
|
|
}
|