mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
57bccb3cb8
* 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
25 lines
571 B
Nix
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 = [ ];
|
|
};
|
|
}
|