My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/lmdbxx/default.nix

26 lines
584 B

{ lib, stdenv
, fetchFromGitHub
, lmdb }:
stdenv.mkDerivation rec {
pname = "lmdbxx";
version = "1.0.0";
src = fetchFromGitHub {
owner = "hoytech";
repo = "lmdbxx";
rev = version;
sha256 = "sha256-7CxQZdgHVvmof6wVR9Mzic6tg89XJT3Z1ICGRs7PZYo=";
};
buildInputs = [ lmdb ];
makeFlags = [ "PREFIX=$(out)" ];
meta = {
homepage = "https://github.com/hoytech/lmdbxx#readme";
description = "C++11 wrapper for the LMDB embedded B+ tree database library";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ fgaz ];
};
}