summary refs log tree commit diff
path: root/doc/languages-frameworks/coq.section.md
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2023-04-14 17:11:13 +0100
committerGitHub <noreply@github.com>2023-04-14 17:11:13 +0100
commita95ed9fe764c3ba2bf2d2fa223012c379cd6b32e (patch)
treea2acbb6af8a5cad7ce7038ec434d80a06e0d6c12 /doc/languages-frameworks/coq.section.md
parent2ba48cc8dee2249526efeda1d2c629a2ec625229 (diff)
downloadnixpkgs-a95ed9fe764c3ba2bf2d2fa223012c379cd6b32e.tar
nixpkgs-a95ed9fe764c3ba2bf2d2fa223012c379cd6b32e.tar.gz
nixpkgs-a95ed9fe764c3ba2bf2d2fa223012c379cd6b32e.tar.bz2
nixpkgs-a95ed9fe764c3ba2bf2d2fa223012c379cd6b32e.tar.lz
nixpkgs-a95ed9fe764c3ba2bf2d2fa223012c379cd6b32e.tar.xz
nixpkgs-a95ed9fe764c3ba2bf2d2fa223012c379cd6b32e.tar.zst
nixpkgs-a95ed9fe764c3ba2bf2d2fa223012c379cd6b32e.zip
Fix a small typo in the manual
environements -> environments
Diffstat (limited to 'doc/languages-frameworks/coq.section.md')
-rw-r--r--doc/languages-frameworks/coq.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/coq.section.md b/doc/languages-frameworks/coq.section.md
index e359acb3a80..6ca19970837 100644
--- a/doc/languages-frameworks/coq.section.md
+++ b/doc/languages-frameworks/coq.section.md
@@ -37,7 +37,7 @@ The recommended way of defining a derivation for a Coq library, is to use the `c
 * `buildInputs` (optional), is a list of libraries and dependencies that are required to build and run the current derivation, in addition to the default one `[ coq ]`,
 * `extraBuildInputs` (optional, deprecated), an additional list of derivation to add to `buildInputs`,
 * `overrideBuildInputs` (optional) replaces the default list of derivation to which `buildInputs` and `extraBuildInputs` adds extras elements,
-* `propagatedBuildInputs` (optional) is passed as is to `mkDerivation`, we recommend to use this for Coq libraries and Coq plugin dependencies, as this makes sure the paths of the compiled libraries and plugins will always be added to the build environements of subsequent derivation, which is necessary for Coq packages to work correctly,
+* `propagatedBuildInputs` (optional) is passed as is to `mkDerivation`, we recommend to use this for Coq libraries and Coq plugin dependencies, as this makes sure the paths of the compiled libraries and plugins will always be added to the build environments of subsequent derivation, which is necessary for Coq packages to work correctly,
 * `mlPlugin` (optional, defaults to `false`). Some extensions (plugins) might require OCaml and sometimes other OCaml packages. Standard dependencies can be added by setting the current option to `true`. For a finer grain control, the `coq.ocamlPackages` attribute can be used in `nativeBuildInputs`, `buildInputs`, and `propagatedBuildInputs` to depend on the same package set Coq was built against.
 * `useDuneifVersion` (optional, default to `(x: false)` uses Dune to build the package if the provided predicate evaluates to true on the version, e.g. `useDuneifVersion = versions.isGe "1.1"`  will use dune if the version of the package is greater or equal to `"1.1"`,
 * `useDune` (optional, defaults to `false`) uses Dune to build the package if set to true, the presence of this attribute overrides the behavior of the previous one.