2023-02-02 18:25:31 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv, lz4, lxd }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "raft-canonical";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "0.18.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "canonical";
|
|
|
|
repo = "raft";
|
2023-02-02 18:25:31 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-10-19 13:55:26 +00:00
|
|
|
hash = "sha256-C3LfrdXNs5AG9B2n2c39fTjv2gri910EYxApGWwtH90=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook file pkg-config ];
|
2021-08-08 23:34:03 +00:00
|
|
|
buildInputs = [ libuv lz4 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
patches = [
|
|
|
|
# network tests either hang indefinitely, or fail outright
|
|
|
|
./disable-net-tests.patch
|
|
|
|
|
|
|
|
# missing dir check is flaky
|
|
|
|
./disable-missing-dir-test.patch
|
|
|
|
];
|
2022-08-12 12:06:08 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace configure --replace /usr/bin/ " "
|
|
|
|
'';
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
doCheck = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit lxd;
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
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;
|
2021-08-08 23:34:03 +00:00
|
|
|
platforms = platforms.linux;
|
2023-02-02 18:25:31 +00:00
|
|
|
maintainers = with maintainers; [ wucke13 adamcstephens ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|