lmdb: lightning memory-mapped database

This commit is contained in:
William Casarin 2015-07-04 05:01:07 -07:00
parent 7446fb80c2
commit 9d85874aeb
3 changed files with 44 additions and 0 deletions

View file

@ -332,6 +332,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
fullName = "SIL Open Font License 1.1";
};
openldap = spdx {
spdxId = "OLDAP-2.8";
fullName = "Open LDAP Public License v2.8";
};
openssl = spdx {
spdxId = "OpenSSL";
fullName = "OpenSSL License";

View file

@ -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;
};
}

View file

@ -6651,6 +6651,8 @@ let
leveldb = callPackage ../development/libraries/leveldb { };
lmdb = callPackage ../development/libraries/lmdb { };
levmar = callPackage ../development/libraries/levmar { };
leptonica = callPackage ../development/libraries/leptonica {