depot/third_party/nixpkgs/pkgs/development/libraries/nuraft/default.nix
Default email a4fd2de975 Project import generated by Copybara.
GitOrigin-RevId: 34ad166a830d3ac1541dcce571c52231f2f0865a
2020-11-02 21:18:15 -05:00

24 lines
671 B
Nix

{ 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 ];
};
}