nixpkgs/pkgs/by-name/lm/lmdb/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
2.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, windows }:
2015-07-04 13:01:07 +01:00
2017-09-22 22:12:12 +01:00
stdenv.mkDerivation rec {
pname = "lmdb";
2024-05-22 14:46:08 +01:00
version = "0.9.33";
2015-07-04 13:01:07 +01:00
2021-04-30 02:07:29 +01:00
src = fetchFromGitLab {
domain = "git.openldap.org";
owner = "openldap";
repo = "openldap";
2017-01-29 16:19:47 +00:00
rev = "LMDB_${version}";
2024-05-22 14:46:08 +01:00
sha256 = "sha256-5IBoJ3jaNXao5zVzb0LDM8RGid4s8DGQpjVqrVPLpXQ=";
2015-07-04 13:01:07 +01:00
};
postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb";
patches = [ ./hardcoded-compiler.patch ./bin-ext.patch ];
patchFlags = [ "-p3" ];
2018-04-01 10:09:13 +01:00
# Don't attempt the .so if static, as it would fail.
postPatch = lib.optionalString stdenv.hostPlatform.isStatic ''
sed 's/^ILIBS\>.*/ILIBS = liblmdb.a/' -i Makefile
'';
outputs = [ "bin" "out" "dev" ];
buildInputs = lib.optional stdenv.hostPlatform.isWindows windows.pthreads;
2019-02-21 09:35:01 +00:00
makeFlags = [
"prefix=$(out)"
"CC=${stdenv.cc.targetPrefix}cc"
"AR=${stdenv.cc.targetPrefix}ar"
]
++ lib.optional stdenv.hostPlatform.isDarwin "LDFLAGS=-Wl,-install_name,$(out)/lib/liblmdb.so"
++ lib.optionals stdenv.hostPlatform.isWindows [ "SOEXT=.dll" "BINEXT=.exe" ];
2015-07-04 13:01:07 +01:00
doCheck = true;
checkTarget = "test";
2015-07-04 13:01:07 +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
2023-05-23 11:04:22 +01:00
# Expected by Rust libraries.
ln -s lmdb.pc "$dev/lib/pkgconfig/liblmdb.pc"
2015-07-04 13:01:07 +01:00
'';
meta = with lib; {
2015-07-04 13:01:07 +01: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 02:07:29 +01:00
homepage = "https://symas.com/lmdb/";
2024-01-30 07:42:05 +00:00
changelog = "https://git.openldap.org/openldap/openldap/-/blob/LMDB_${version}/libraries/liblmdb/CHANGES";
maintainers = with maintainers; [ jb55 vcunat ];
2015-07-04 13:01:07 +01:00
license = licenses.openldap;
platforms = platforms.all;
};
}