summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-03-13 15:39:14 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-13 21:19:09 +0100
commitb5359c444e881e36864c658bbcfc61259544c023 (patch)
tree268674111f83e484888c554b15464b55c2be454e /doc
parent4d10c11d98b14070bac36c6cd1360a2f16083c0d (diff)
downloadnixpkgs-b5359c444e881e36864c658bbcfc61259544c023.tar
nixpkgs-b5359c444e881e36864c658bbcfc61259544c023.tar.gz
nixpkgs-b5359c444e881e36864c658bbcfc61259544c023.tar.bz2
nixpkgs-b5359c444e881e36864c658bbcfc61259544c023.tar.lz
nixpkgs-b5359c444e881e36864c658bbcfc61259544c023.tar.xz
nixpkgs-b5359c444e881e36864c658bbcfc61259544c023.tar.zst
nixpkgs-b5359c444e881e36864c658bbcfc61259544c023.zip
buildDunePackage: use dune_2 by default
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/ocaml.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/ocaml.section.md b/doc/languages-frameworks/ocaml.section.md
index 47035551d41..e4813d7dd2d 100644
--- a/doc/languages-frameworks/ocaml.section.md
+++ b/doc/languages-frameworks/ocaml.section.md
@@ -38,8 +38,8 @@ Here is a simple package example.
 
 - It uses the `fetchFromGitHub` fetcher to get its source.
 
-- `useDune2 = true` ensures that the latest version of Dune is used for the
-  build (this may become the default value in a future release).
+- `useDune2 = true` ensures that Dune version 2 is used for the
+  build (this is the default; set to `false` to use Dune version 1).
 
 - It sets the optional `doCheck` attribute such that tests will be run with
   `dune runtest -p angstrom` after the build (`dune build -p angstrom`) is