summary refs log tree commit diff
path: root/pkgs/development/libraries/libzdb
diff options
context:
space:
mode:
authorMoritz Maxeiner <moritz@ucworks.org>2014-02-04 20:02:46 +0100
committerMoritz Maxeiner <moritz@ucworks.org>2014-02-04 20:02:46 +0100
commit99ba14ee7a94d5f809d024e6fa4bfffba7984040 (patch)
treed8a9081e28cc909b6eb67e62341859327cd57ead /pkgs/development/libraries/libzdb
parente1b206b4a9c895e6684fc948b1526d8759e54328 (diff)
downloadnixpkgs-99ba14ee7a94d5f809d024e6fa4bfffba7984040.tar
nixpkgs-99ba14ee7a94d5f809d024e6fa4bfffba7984040.tar.gz
nixpkgs-99ba14ee7a94d5f809d024e6fa4bfffba7984040.tar.bz2
nixpkgs-99ba14ee7a94d5f809d024e6fa4bfffba7984040.tar.lz
nixpkgs-99ba14ee7a94d5f809d024e6fa4bfffba7984040.tar.xz
nixpkgs-99ba14ee7a94d5f809d024e6fa4bfffba7984040.tar.zst
nixpkgs-99ba14ee7a94d5f809d024e6fa4bfffba7984040.zip
Add packages for libzdb, libsearpc, ccnet, seafile-shared, and seafile-client
Diffstat (limited to 'pkgs/development/libraries/libzdb')
-rw-r--r--pkgs/development/libraries/libzdb/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libzdb/default.nix b/pkgs/development/libraries/libzdb/default.nix
new file mode 100644
index 00000000000..25eef6c7a99
--- /dev/null
+++ b/pkgs/development/libraries/libzdb/default.nix
@@ -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 ];
+  };
+}
\ No newline at end of file