summary refs log tree commit diff
path: root/pkgs/servers/nosql/hyperdex/replicant.nix
blob: 43c86e6c0c9a3663701b5064b53be1be41c49c14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, unzip, autoreconfHook, glog,
  hyperleveldb, libe, pkgconfig, popt, libpo6, busybee }:

stdenv.mkDerivation rec {
  name = "replicant-${version}";
  version = "0.6.3";

  src = fetchurl {
    url = "https://github.com/rescrv/Replicant/archive/releases/${version}.zip";
    sha256 = "1q3pdq2ndpj70yd1578bn4grlrp77gl8hv2fz34jpx34qmlalda4";
  };

  buildInputs = [
    autoreconfHook
    busybee
    glog
    hyperleveldb
    libe
    libpo6
    pkgconfig
    popt
    unzip
  ];

  meta = with stdenv.lib; {
    description = "A system for maintaining replicated state machines";
    homepage = https://github.com/rescrv/Replicant;
    license = licenses.bsd3;
  };
}