Merge pull request #236411 from wegank/nuraft-boost

nuraft: unpin boost172

authored by

Weijia Wang and committed by
GitHub
b506be0e ffd47a04

+3 -3
+3 -3
pkgs/development/libraries/nuraft/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, boost172, asio, openssl, zlib }: 1 + { lib, stdenv, fetchFromGitHub, cmake, boost, asio, openssl, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nuraft"; ··· 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 - buildInputs = [ boost172 asio openssl zlib ]; 15 + buildInputs = [ boost asio openssl zlib ]; 16 16 17 17 meta = with lib; { 18 18 homepage = "https://github.com/eBay/NuRaft"; 19 19 description = "C++ implementation of Raft core logic as a replication library"; 20 20 license = licenses.asl20; 21 - platforms = platforms.linux; 22 21 maintainers = with maintainers; [ wheelsandmetal ]; 22 + platforms = platforms.all; 23 23 }; 24 24 }