nixpkgs/pkgs/servers/nosql/hyperdex/hyperleveldb.nix

21 lines
599 B
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip, autoreconfHook }:
2014-12-13 00:20:04 +00:00
stdenv.mkDerivation rec {
name = "hyperleveldb-${version}";
version = "1.2.1";
src = fetchurl {
url = "https://github.com/rescrv/HyperLevelDB/archive/releases/${version}.zip";
sha256 = "0m5fwl9sc7c6m2zm3zjlxxg7f602gnaryikxgflahhdccdvvr56y";
2014-12-13 00:20:04 +00:00
};
buildInputs = [ unzip autoreconfHook ];
2014-12-13 00:20:04 +00:00
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;
};
}