mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
nuraft: unpin boost172
This commit is contained in:
parent
af21c31b2a
commit
e107e02ead
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user