nixpkgs/pkgs/development/libraries/raft-canonical/default.nix

47 lines
1.4 KiB
Nix
Raw Normal View History

2019-10-01 15:33:29 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, file, libuv }:
stdenv.mkDerivation rec {
pname = "raft-canonical";
2020-04-27 07:06:25 +00:00
version = "0.9.18";
2019-10-01 15:33:29 +00:00
src = fetchFromGitHub {
owner = "canonical";
repo = "raft";
rev = "v${version}";
2020-04-27 07:06:25 +00:00
sha256 = "0f613aiyxqskz9d10f7r37ar9ngqsf9qsyk3jjf7s5l14wh6vl5k";
2019-10-01 15:33:29 +00:00
};
nativeBuildInputs = [ autoreconfHook file pkgconfig ];
buildInputs = [ libuv ];
preConfigure = ''
substituteInPlace configure --replace /usr/bin/ " "
'';
2020-01-04 00:36:24 +00:00
# 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
2019-10-01 15:33:29 +00:00
#Error: child killed by signal 6 (Aborted)
2020-01-04 00:36:24 +00:00
doCheck = false;
2019-10-01 15:33:29 +00: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 15:33:29 +00:00
};
}