Add packages for libzdb, libsearpc, ccnet, seafile-shared, and seafile-client

This commit is contained in:
Moritz Maxeiner
2014-02-04 20:02:46 +01:00
parent e1b206b4a9
commit 99ba14ee7a
10 changed files with 393 additions and 0 deletions
@@ -0,0 +1,23 @@
{stdenv, fetchurl, sqlite}:
stdenv.mkDerivation rec
{
version = "3.0";
name = "libzdb-${version}";
src = fetchurl
{
url = "http://www.tildeslash.com/libzdb/dist/libzdb-${version}.tar.gz";
sha256 = "e334bcb9ca1410e863634a164e3b1b5784018eb6e90b6c2b527780fc29a123c8";
};
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;
maintainers = [ stdenv.lib.maintainers.calrama ];
};
}