summary refs log tree commit diff
path: root/pkgs/development/libraries/lmdb/default.nix
blob: 02c07a78acb2f35b1306efc8fd88fa2fe2bc6efa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, fetchzip }:

stdenv.mkDerivation rec {
  name = "lmdb-${version}";
  version = "0.9.16";

  src = fetchzip {
    url = "https://github.com/LMDB/lmdb/archive/LMDB_${version}.tar.gz";
    sha256 = "1lkmngscijwiz09gdkqygdp87x55vp8gb4fh4vq7s34k4jv0327l";
  };

  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;
  };
}