nuraft: init at 1.1.2

This commit is contained in:
wheelsandmetal 2020-10-29 10:24:59 +00:00
parent 4e35d03c8e
commit 166eadee60
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, cmake, boost172, asio, openssl, zlib }:
stdenv.mkDerivation rec {
pname = "nuraft";
version = "1.1.2";
src = fetchFromGitHub {
owner = "eBay";
repo = "NuRaft";
rev = "v${version}";
sha256 = "sha256-l6rG8f+JAWfAJxEZPKRHZo2k8x9WbtSJC3gGCSMHYfs=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost172 asio openssl zlib ];
meta = with stdenv.lib; {
homepage = "https://github.com/eBay/NuRaft";
description = "C++ implementation of Raft core logic as a replication library";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ wheelsandmetal ];
};
}

View File

@ -14671,6 +14671,8 @@ in
ntrack = callPackage ../development/libraries/ntrack { };
nuraft = callPackage ../development/libraries/nuraft { };
nuspell = callPackage ../development/libraries/nuspell { };
nuspellWithDicts = dicts: callPackage ../development/libraries/nuspell/wrapper.nix { inherit dicts; };