python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / nuraft / default.nix
blob232fdfc512f007e82b916564047987a2066606de
1 { lib, stdenv, fetchFromGitHub, cmake, boost172, asio, openssl, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "nuraft";
5   version = "1.3.0";
7   src = fetchFromGitHub {
8     owner = "eBay";
9     repo = "NuRaft";
10     rev = "v${version}";
11     sha256 = "sha256-Fyy9B5CXyMcDSOdqaeJ4ejo1svM90ESXuNL0rzsTZpE=";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ boost172 asio openssl zlib ];
17   meta = with lib; {
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 ];
23   };