2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv }:
|
2019-10-01 16:33:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "raft-canonical";
|
2020-06-14 12:09:01 +01:00
|
|
|
version = "0.9.23";
|
2019-10-01 16:33:29 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "canonical";
|
|
|
|
repo = "raft";
|
|
|
|
rev = "v${version}";
|
2020-06-14 12:09:01 +01:00
|
|
|
sha256 = "0swn95cf11fqczllmxr0nj3ig532rw4n3w6g3ckdnqka8520xjyr";
|
2019-10-01 16:33:29 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook file pkg-config ];
|
2019-10-01 16:33:29 +01:00
|
|
|
buildInputs = [ libuv ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace configure --replace /usr/bin/ " "
|
|
|
|
'';
|
|
|
|
|
2020-06-14 12:09:01 +01:00
|
|
|
doCheck = true;
|
2020-01-04 00:36:24 +00:00
|
|
|
|
2019-10-01 16:33:29 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = ''
|
|
|
|
Fully asynchronous C implementation of the Raft consensus protocol
|
|
|
|
'';
|
|
|
|
longDescription = ''
|
|
|
|
The library has modular design: its core part implements only the core
|
|
|
|
Raft algorithm logic, in a fully platform independent way. On top of
|
|
|
|
that, a pluggable interface defines the I/O implementation for networking
|
|
|
|
(send/receive RPC messages) and disk persistence (store log entries and
|
|
|
|
snapshots).
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/canonical/raft";
|
|
|
|
license = licenses.asl20;
|
2020-01-04 00:36:24 +00:00
|
|
|
maintainers = with maintainers; [ wucke13 ];
|
2019-10-01 16:33:29 +01:00
|
|
|
};
|
|
|
|
}
|