mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "raft-canonical";
|
|
version = "0.9.23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "canonical";
|
|
repo = "raft";
|
|
rev = "v${version}";
|
|
sha256 = "0swn95cf11fqczllmxr0nj3ig532rw4n3w6g3ckdnqka8520xjyr";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook file pkg-config ];
|
|
buildInputs = [ libuv ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace configure --replace /usr/bin/ " "
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|