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

61 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchgit }:
2015-07-04 12:01:07 +00:00
2017-09-22 21:12:12 +00:00
stdenv.mkDerivation rec {
pname = "lmdb";
version = "0.9.25";
2015-07-04 12:01:07 +00:00
src = fetchgit {
url = "https://git.openldap.org/openldap/openldap.git";
2017-01-29 16:19:47 +00:00
rev = "LMDB_${version}";
sha256 = "0i60zlca8r6fib23gdgl4c80gxpx24772ggpvz94yr7zaai4k11w";
2015-07-04 12:01:07 +00:00
};
postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb";
2018-04-01 09:09:13 +00:00
patches = [ ./hardcoded-compiler.patch ];
patchFlags = [ "-p3" ];
2018-04-01 09:09:13 +00:00
outputs = [ "bin" "out" "dev" ];
2019-02-21 09:35:01 +00:00
makeFlags = [
"prefix=$(out)"
"CC=${stdenv.cc.targetPrefix}cc"
"AR=${stdenv.cc.targetPrefix}ar"
]
++ lib.optional stdenv.isDarwin "LDFLAGS=-Wl,-install_name,$(out)/lib/liblmdb.so";
2015-07-04 12:01:07 +00:00
doCheck = true;
checkPhase = "make test";
postInstall = ''
moveToOutput bin "$bin"
''
# add lmdb.pc (dynamic only)
+ ''
mkdir -p "$dev/lib/pkgconfig"
cat > "$dev/lib/pkgconfig/lmdb.pc" <<EOF
Name: lmdb
Description: ${meta.description}
Version: ${version}
Cflags: -I$dev/include
Libs: -L$out/lib -llmdb
EOF
2015-07-04 12:01:07 +00:00
'';
meta = with lib; {
2015-07-04 12:01:07 +00:00
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 vcunat ];
2015-07-04 12:01:07 +00:00
license = licenses.openldap;
platforms = platforms.all;
};
}