38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ 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;
|
|
};
|
|
}
|