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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv, lz4, lxd }:
2019-10-01 15:33:29 +00:00
stdenv.mkDerivation rec {
pname = "raft-canonical";
2023-01-29 17:09:26 +00:00
version = "0.17.1";
2019-10-01 15:33:29 +00:00
src = fetchFromGitHub {
owner = "canonical";
repo = "raft";
2023-01-24 03:45:21 +00:00
rev = "refs/tags/v${version}";
2023-01-29 17:09:26 +00:00
hash = "sha256-P6IYl6xcsqXw1ilt6HYw757FL2syy1XePBVGbPAlz6Q=";
2019-10-01 15:33:29 +00:00
};
nativeBuildInputs = [ autoreconfHook file pkg-config ];
2021-08-08 11:00:00 +00:00
buildInputs = [ libuv lz4 ];
2019-10-01 15:33:29 +00:00
2021-05-15 17:11:36 +00:00
enableParallelBuilding = true;
2023-01-24 03:45:21 +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-01 08:24:14 +00:00
2019-10-01 15:33:29 +00:00
preConfigure = ''
substituteInPlace configure --replace /usr/bin/ " "
'';
2020-06-14 11:09:01 +00:00
doCheck = true;
2020-01-04 00:36:24 +00:00
2019-10-01 15:33:29 +00:00
outputs = [ "dev" "out" ];
passthru.tests = {
inherit lxd;
};
meta = with lib; {
2019-10-01 15:33:29 +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 11:00:00 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ wucke13 adamcstephens ];
2019-10-01 15:33:29 +00:00
};
}