nixpkgs/pkgs/development/libraries/libzdb/default.nix
Ryan Mulligan 833bf9937e libzdb: 3.0 -> 3.1
Semi-automatic update. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 3.1 with grep in /nix/store/zpsvgnphvh4h494h5ivifrvrb5fjzj0w-libzdb-3.1
- found 3.1 in filename of file in /nix/store/zpsvgnphvh4h494h5ivifrvrb5fjzj0w-libzdb-3.1
2018-03-08 23:44:50 -08:00

24 lines
600 B
Nix

{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 = [ stdenv.lib.maintainers.calrama ];
};
}