nixpkgs/pkgs/development/libraries/lmdb/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2015-07-04 14:01:07 +02:00
{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
name = "lmdb-${version}";
2015-08-30 19:55:25 +02:00
version = "0.9.16";
2015-07-04 14:01:07 +02:00
src = fetchzip {
url = "https://github.com/LMDB/lmdb/archive/LMDB_${version}.tar.gz";
2015-08-30 19:55:25 +02:00
sha256 = "1lkmngscijwiz09gdkqygdp87x55vp8gb4fh4vq7s34k4jv0327l";
2015-07-04 14:01:07 +02:00
};
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;
};
}