nixpkgs/pkgs/development/libraries/lmdbxx/default.nix
Francesco Gazzetta 03a1adddd3 lmdbxx: change repo location
Owner changed from bendiken to drycpp
2018-09-12 13:26:56 +02:00

27 lines
610 B
Nix

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