summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien@users.noreply.github.com>2023-01-27 20:18:39 +0000
committerGitHub <noreply@github.com>2023-01-27 20:18:39 +0000
commitb55a8d3ad6bfd031230e654e63ff406facd2976d (patch)
tree5a647c6763b26ea1eef4e1eb36e5e79da408b758 /doc/languages-frameworks
parent66b3c73fae2a2b127335b2f103edc9c868fadc71 (diff)
parent6043e3af4ec34a42d1f45620527eb3081e5b564a (diff)
downloadnixpkgs-b55a8d3ad6bfd031230e654e63ff406facd2976d.tar
nixpkgs-b55a8d3ad6bfd031230e654e63ff406facd2976d.tar.gz
nixpkgs-b55a8d3ad6bfd031230e654e63ff406facd2976d.tar.bz2
nixpkgs-b55a8d3ad6bfd031230e654e63ff406facd2976d.tar.lz
nixpkgs-b55a8d3ad6bfd031230e654e63ff406facd2976d.tar.xz
nixpkgs-b55a8d3ad6bfd031230e654e63ff406facd2976d.tar.zst
nixpkgs-b55a8d3ad6bfd031230e654e63ff406facd2976d.zip
Merge pull request #205646 from symphorien/ocamlconflict
ocamlPackages.findlib: detect conflicts of version early
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/ocaml.section.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/languages-frameworks/ocaml.section.md b/doc/languages-frameworks/ocaml.section.md
index 347b2ea2eca..1e5a5cb4536 100644
--- a/doc/languages-frameworks/ocaml.section.md
+++ b/doc/languages-frameworks/ocaml.section.md
@@ -129,3 +129,8 @@ packaged libraries may still use the old spelling: maintainers are invited to
 fix this when updating packages. Massive renaming is strongly discouraged as it
 would be challenging to review, difficult to test, and will cause unnecessary
 rebuild.
+
+The build will automatically fail if two distinct versions of the same library
+are added to `buildInputs` (which usually happens transitively because of
+`propagatedBuildInputs`). Set `dontDetectOcamlConflicts` to true to disable this
+behavior.