1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 14:17:16 -04:00
nixpkgs/pkgs/servers/nosql/hyperdex/replicant.nix
Joachim Fasting bf7ad2d84f meta.description fixups
Mostly scripted substitutions with a couple of subjective enhancements.
2015-04-30 18:17:42 +02:00

33 lines
748 B
Nix

{ stdenv, fetchurl, unzip, autoconf, automake, libtool, glog,
hyperleveldb, libe, pkgconfig, popt, libpo6, busybee }:
stdenv.mkDerivation rec {
name = "replicant-${version}";
version = "0.5.2";
src = fetchurl {
url = "https://github.com/rescrv/Replicant/archive/releases/0.6.3.zip";
sha256 = "1fbagz0nbvinkqr5iw5y187dm4klkswrxnl5ysq8waglg2nj8zzi";
};
buildInputs = [
autoconf
automake
busybee
glog
hyperleveldb
libe
libpo6
libtool
pkgconfig
popt
unzip
];
preConfigure = "autoreconf -i";
meta = with stdenv.lib; {
description = "A system for maintaining replicated state machines";
homepage = https://github.com/rescrv/Replicant;
license = licenses.bsd3;
};
}