mongoc: add patch documentation

This commit is contained in:
Yan 2023-02-18 00:12:15 +02:00
parent 8ef4c0860c
commit 3dbc3b9c65

View file

@ -26,6 +26,10 @@ stdenv.mkDerivation rec {
# https://github.com/NixOS/nixpkgs/issues/25585
preFixup = ''rm -rf "$(pwd)" '';
# https://github.com/mongodb/mongo-c-driver/pull/1157
# related:
# https://github.com/NixOS/nixpkgs/issues/144170
# mongoc's cmake incorrectly injects a prefix to library paths, breaking Nix. This removes the prefix from paths.
postPatch = ''
substituteInPlace src/libmongoc/CMakeLists.txt \
--replace "\\\''${prefix}/" ""