2456dd0246
This patch blindly fixes the source archive checksums for the local dependencies of hyperdex. I have not looked into why those hashes changed, but I have verified that the hyperdex package now builds successfully.
33 lines
753 B
Nix
33 lines
753 B
Nix
{ stdenv, fetchurl, unzip, autoconf, automake, libtool, 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 = [
|
|
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;
|
|
};
|
|
}
|