libpoly: fix darwin build
issue reported upstream
This commit is contained in:
parent
7968281008
commit
bcc99b83d0
1 changed files with 7 additions and 0 deletions
|
@ -12,6 +12,13 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-E2lHo8Bt4ujoGQ623fjkQbqRnDYJYilXdRt4lnF4wJk=";
|
||||
};
|
||||
|
||||
# https://github.com/SRI-CSL/libpoly/pull/52
|
||||
postPatch = lib.optionalString stdenv.isDarwin ''
|
||||
substituteInPlace src/CMakeLists.txt --replace \
|
||||
'"utils/open_memstream.c ''${poly_SOURCES}"' \
|
||||
'utils/open_memstream.c ''${poly_SOURCES}'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ gmp python3 ];
|
||||
|
|
Loading…
Reference in a new issue