Merge pull request #236411 from wegank/nuraft-boost

nuraft: unpin boost172
This commit is contained in:
Weijia Wang 2023-06-07 13:14:41 +03:00 committed by GitHub
commit b506be0ef9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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