3
0
Fork 0
forked from mirrors/nixpkgs

masari: unpin boost174

This commit is contained in:
Weijia Wang 2023-06-07 22:03:50 +03:00
parent 55401afc40
commit a38a164196
2 changed files with 5 additions and 1 deletions

View file

@ -15,6 +15,10 @@ stdenv.mkDerivation rec {
postPatch = ''
# remove vendored libraries
rm -r external/{miniupnpc,rapidjson}
# include missing headers
sed -i "1i #include <map>" src/device/device_default.hpp
sed -i "1i #include <boost/mpl/contains.hpp>" contrib/epee/include/storages/portable_storage.h
'';
nativeBuildInputs = [ cmake pkg-config git ];

View file

@ -36016,7 +36016,7 @@ with pkgs;
oxen = callPackage ../applications/blockchains/oxen
{ stdenv = gcc10StdenvCompat; boost = boost17x; };
masari = callPackage ../applications/blockchains/masari { boost = boost174; };
masari = callPackage ../applications/blockchains/masari { };
napari = with python3Packages; toPythonApplication napari;