2021-04-30 03:07:29 +02:00
|
|
|
{ lib, stdenv, fetchFromGitLab }:
|
2015-07-04 14:01:07 +02:00
|
|
|
|
2017-09-22 23:12:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "lmdb";
|
2021-04-26 22:29:03 +02:00
|
|
|
version = "0.9.29";
|
2015-07-04 14:01:07 +02:00
|
|
|
|
2021-04-30 03:07:29 +02:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "git.openldap.org";
|
|
|
|
owner = "openldap";
|
|
|
|
repo = "openldap";
|
2017-01-29 17:19:47 +01:00
|
|
|
rev = "LMDB_${version}";
|
2021-04-30 03:07:29 +02:00
|
|
|
sha256 = "19zq5s1amrv1fhw1aszcn2w2xjrk080l6jj5hc9f46yiqf98jjg3";
|
2015-07-04 14:01:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb";
|
|
|
|
|
2018-04-01 11:09:13 +02:00
|
|
|
patches = [ ./hardcoded-compiler.patch ];
|
2019-10-27 14:03:25 +01:00
|
|
|
patchFlags = [ "-p3" ];
|
2018-04-01 11:09:13 +02:00
|
|
|
|
2017-02-13 15:47:08 +01:00
|
|
|
outputs = [ "bin" "out" "dev" ];
|
|
|
|
|
2019-02-21 10:35:01 +01:00
|
|
|
makeFlags = [
|
|
|
|
"prefix=$(out)"
|
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
|
|
"AR=${stdenv.cc.targetPrefix}ar"
|
|
|
|
]
|
2021-01-21 18:00:13 +01:00
|
|
|
++ lib.optional stdenv.isDarwin "LDFLAGS=-Wl,-install_name,$(out)/lib/liblmdb.so";
|
2015-07-04 14:01:07 +02:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = "make test";
|
|
|
|
|
2017-02-13 15:47:08 +01:00
|
|
|
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 14:01:07 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2015-07-04 14:01:07 +02: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.
|
|
|
|
'';
|
2021-04-30 03:07:29 +02:00
|
|
|
homepage = "https://symas.com/lmdb/";
|
2017-02-13 15:47:08 +01:00
|
|
|
maintainers = with maintainers; [ jb55 vcunat ];
|
2015-07-04 14:01:07 +02:00
|
|
|
license = licenses.openldap;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|