nixpkgs/pkgs/by-name/li/libzdb/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
553 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, sqlite}:
stdenv.mkDerivation rec
{
2024-08-06 00:43:29 +00:00
version = "3.4.0";
pname = "libzdb";
src = fetchurl
{
url = "https://www.tildeslash.com/libzdb/dist/libzdb-${version}.tar.gz";
2024-08-06 00:43:29 +00:00
sha256 = "sha256-q9Z1cZvL3eQwqk7hOXW5gNVdKry1zCKAgqMDIKa7nw8=";
};
buildInputs = [ sqlite ];
meta =
{
2020-03-08 17:13:31 +00:00
homepage = "http://www.tildeslash.com/libzdb/";
2014-11-11 13:20:43 +00:00
description = "Small, easy to use Open Source Database Connection Pool Library";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
2018-03-10 23:46:41 +00:00
maintainers = [ ];
};
2018-03-10 23:46:41 +00:00
}