nixpkgs/pkgs/development/libraries/raft-canonical/default.nix
2020-04-27 08:15:21 +01:00

47 lines
1.4 KiB
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, file, libuv }:
stdenv.mkDerivation rec {
pname = "raft-canonical";
version = "0.9.18";
src = fetchFromGitHub {
owner = "canonical";
repo = "raft";
rev = "v${version}";
sha256 = "0f613aiyxqskz9d10f7r37ar9ngqsf9qsyk3jjf7s5l14wh6vl5k";
};
nativeBuildInputs = [ autoreconfHook file pkgconfig ];
buildInputs = [ libuv ];
preConfigure = ''
substituteInPlace configure --replace /usr/bin/ " "
'';
# test fails
#
#append/finalizeSegment [ ERROR ]
#Error: test/integration/test_uv_append.c:264: assertion failed: test_dir_has_file(f->dir, "0000000000000001-0000000000000004") is not true
#Error: child killed by signal 6 (Aborted)
doCheck = false;
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;
maintainers = with maintainers; [ wucke13 ];
};
}