nixpkgs/pkgs/development/libraries/libzdb/default.nix

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

25 lines
555 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, sqlite}:
stdenv.mkDerivation rec
{
2023-01-22 10:48:58 +00:00
version = "3.2.3";
pname = "libzdb";
src = fetchurl
{
url = "https://www.tildeslash.com/libzdb/dist/libzdb-${version}.tar.gz";
2023-01-22 10:48:58 +00:00
sha256 = "sha256-oZV4Jvq3clSE/Ft0eApqfQ2Lf14uVNJuEGs5ngqGvrA=";
};
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 = "A 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
}