nixpkgs/pkgs/development/libraries/nuraft/default.nix

25 lines
669 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost172, asio, openssl, zlib }:
2020-10-29 10:24:59 +00:00
stdenv.mkDerivation rec {
pname = "nuraft";
2021-02-14 04:58:11 +00:00
version = "1.2.0";
2020-10-29 10:24:59 +00:00
src = fetchFromGitHub {
owner = "eBay";
repo = "NuRaft";
rev = "v${version}";
2021-02-14 04:58:11 +00:00
sha256 = "sha256-1k+AWmpAiHcQVEB5kUaMtNWhOnTBnmJiNU8zL1J/PEk=";
2020-10-29 10:24:59 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost172 asio openssl zlib ];
meta = with lib; {
2020-10-29 10:24:59 +00:00
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 ];
};
}