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

31 lines
686 B
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip, autoreconfHook, glog,
2014-12-13 01:20:04 +01:00
hyperleveldb, libe, pkgconfig, popt, libpo6, busybee }:
stdenv.mkDerivation rec {
name = "replicant-${version}";
version = "0.6.3";
2014-12-13 01:20:04 +01:00
src = fetchurl {
url = "https://github.com/rescrv/Replicant/archive/releases/${version}.zip";
sha256 = "1q3pdq2ndpj70yd1578bn4grlrp77gl8hv2fz34jpx34qmlalda4";
2014-12-13 01:20:04 +01:00
};
2014-12-13 01:20:04 +01:00
buildInputs = [
autoreconfHook
2014-12-13 01:20:04 +01:00
busybee
glog
hyperleveldb
libe
libpo6
pkgconfig
popt
unzip
];
2014-12-13 01:20:04 +01:00
meta = with stdenv.lib; {
description = "A system for maintaining replicated state machines";
2014-12-13 01:20:04 +01:00
homepage = https://github.com/rescrv/Replicant;
license = licenses.bsd3;
};
}