mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
lmdb: lightning memory-mapped database
This commit is contained in:
parent
7446fb80c2
commit
9d85874aeb
|
@ -332,6 +332,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||
fullName = "SIL Open Font License 1.1";
|
||||
};
|
||||
|
||||
openldap = spdx {
|
||||
spdxId = "OLDAP-2.8";
|
||||
fullName = "Open LDAP Public License v2.8";
|
||||
};
|
||||
|
||||
openssl = spdx {
|
||||
spdxId = "OpenSSL";
|
||||
fullName = "OpenSSL License";
|
||||
|
|
37
pkgs/development/libraries/lmdb/default.nix
Normal file
37
pkgs/development/libraries/lmdb/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lmdb-${version}";
|
||||
version = "0.9.15";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/LMDB/lmdb/archive/LMDB_${version}.tar.gz";
|
||||
sha256 = "0p79fpyh1yx2jg1f0kag5zsdn4spkgs1j3dxibvqdy32wkbpxd0g";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -6651,6 +6651,8 @@ let
|
|||
|
||||
leveldb = callPackage ../development/libraries/leveldb { };
|
||||
|
||||
lmdb = callPackage ../development/libraries/lmdb { };
|
||||
|
||||
levmar = callPackage ../development/libraries/levmar { };
|
||||
|
||||
leptonica = callPackage ../development/libraries/leptonica {
|
||||
|
|
Loading…
Reference in a new issue