My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/libraries/lmdb/default.nix

40 lines
1.2 KiB

{ stdenv, fetchzip }:
9 years ago
let optional = stdenv.lib.optional;
in stdenv.mkDerivation rec {
name = "lmdb-${version}";
version = "0.9.18";
src = fetchzip {
url = "https://github.com/LMDB/lmdb/archive/LMDB_${version}.tar.gz";
sha256 = "01j384kxg36kym060pybr5p6mjw0xv33bqbb8arncdkdq57xk8wg";
};
postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb";
9 years ago
makeFlags = ["prefix=$(out)"]
++ optional stdenv.cc.isClang "CC=clang";
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;
};
}