about summary refs log tree commit diff
path: root/pkgs/development/libraries/lmdb
diff options
context:
space:
mode:
authorWilliam Casarin <bill@casarin.me>2015-07-04 05:01:07 -0700
committerWilliam Casarin <bill@casarin.me>2015-07-04 05:06:29 -0700
commit9d85874aeb6f17bc1b13c1a248f319e1908e1210 (patch)
tree76c25700a150a0abace115b16dac975c91034dd6 /pkgs/development/libraries/lmdb
parent7446fb80c298adeb4745481cb4df3ef7252cd539 (diff)
lmdb: lightning memory-mapped database
Diffstat (limited to 'pkgs/development/libraries/lmdb')
-rw-r--r--pkgs/development/libraries/lmdb/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/libraries/lmdb/default.nix b/pkgs/development/libraries/lmdb/default.nix
new file mode 100644
index 0000000000000..fbf817dd8730f
--- /dev/null
+++ b/pkgs/development/libraries/lmdb/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchzip }:
+
+stdenv.mkDerivation rec {
+  name = "lmdb-${version}";
+  version = "0.9.15";
+
+  src = fetchzip {
+    url = "https://github.com/LMDB/lmdb/archive/LMDB_${version}.tar.gz";
+    sha256 = "0p79fpyh1yx2jg1f0kag5zsdn4spkgs1j3dxibvqdy32wkbpxd0g";
+  };
+
+  postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb";
+
+  makeFlags = "prefix=$(out)";
+
+  doCheck = true;
+  checkPhase = "make test";
+
+  preInstall = ''
+    mkdir -p $out/{man/man1,bin,lib,include}
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Lightning memory-mapped database";
+    longDescription = ''
+      LMDB is an ultra-fast, ultra-compact key-value embedded data store
+      developed by Symas for the OpenLDAP Project. It uses memory-mapped files,
+      so it has the read performance of a pure in-memory database while still
+      offering the persistence of standard disk-based databases, and is only
+      limited to the size of the virtual address space.
+    '';
+    homepage = http://symas.com/mdb/;
+    maintainers = with maintainers; [ jb55 ];
+    license = licenses.openldap;
+    platforms = platforms.all;
+  };
+}