nuraft: unpin boost172

This commit is contained in:
Weijia Wang 2023-06-07 10:33:30 +03:00
parent af21c31b2a
commit e107e02ead

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, boost172, asio, openssl, zlib }:
{ lib, stdenv, fetchFromGitHub, cmake, boost, asio, openssl, zlib }:
stdenv.mkDerivation rec {
pname = "nuraft";
@ -12,13 +12,13 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost172 asio openssl zlib ];
buildInputs = [ boost asio openssl zlib ];
meta = with 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 ];
platforms = platforms.all;
};
}