2014-12-13 03:20:04 +03:00
|
|
|
{ stdenv, fetchurl, unzip, autoconf, automake, libtool }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hyperleveldb-${version}";
|
|
|
|
version = "1.2.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/rescrv/HyperLevelDB/archive/releases/${version}.zip";
|
2015-11-03 17:19:10 +03:00
|
|
|
sha256 = "0m5fwl9sc7c6m2zm3zjlxxg7f602gnaryikxgflahhdccdvvr56y";
|
2014-12-13 03:20:04 +03:00
|
|
|
};
|
|
|
|
buildInputs = [ unzip autoconf automake libtool ];
|
|
|
|
preConfigure = "autoreconf -i";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = ''A fork of LevelDB intended to meet the needs of
|
|
|
|
HyperDex while remaining compatible with LevelDB.'';
|
|
|
|
homepage = https://github.com/rescrv/HyperLevelDB;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|