1 { lib, stdenv, fetchFromGitHub, cmake, boost172, asio, openssl, zlib }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-Fyy9B5CXyMcDSOdqaeJ4ejo1svM90ESXuNL0rzsTZpE=";
14 nativeBuildInputs = [ cmake ];
15 buildInputs = [ boost172 asio openssl zlib ];
18 homepage = "https://github.com/eBay/NuRaft";
19 description = "C++ implementation of Raft core logic as a replication library";
20 license = licenses.asl20;
21 platforms = platforms.linux;
22 maintainers = with maintainers; [ wheelsandmetal ];