nixpkgs/pkgs/development/libraries/libzdb/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

25 lines
571 B
Nix

{stdenv, fetchurl, sqlite}:
stdenv.mkDerivation rec
{
version = "3.1";
name = "libzdb-${version}";
src = fetchurl
{
url = "https://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 = [ ];
};
}