about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authormaralorn <mail@maralorn.de>2023-01-15 22:15:40 +0100
committermaralorn <mail@maralorn.de>2023-01-15 22:15:40 +0100
commitfecbf169e2cdca7dfdf2d5168fc25b95dfefd9dc (patch)
tree2dd72954dfdb10c95a776d396a5e7f611c7b4981 /doc
parenta21493d40d8e121bd3053e445e8c8e44ab66887f (diff)
haskell/docs: Fix a link
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/haskell.section.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/languages-frameworks/haskell.section.md b/doc/languages-frameworks/haskell.section.md
index ba7dfe47bc134..9c3ac6de620ef 100644
--- a/doc/languages-frameworks/haskell.section.md
+++ b/doc/languages-frameworks/haskell.section.md
@@ -159,13 +159,12 @@ on Hackage and tries to pick for every (transitive) dependency of your build
 exactly one version. Those versions need to satisfy all the version constraints
 given in the `.cabal` file of your package and all its dependencies.
 
-The Haskell builder in nixpkgs, (described in more detail in
-[#haskell-mkderivation]), does no such thing. It will simply take as input
-packages with names off the desired dependencies and just check whether they
-fulfill the version bounds and (by default, see `jailbreak`) fail if they
-don’t.
+The [Haskell builder in nixpkgs](#haskell-mkderivation) does no such thing.
+It will simply take as input packages with names off the desired dependencies
+and just check whether they fulfill the version bounds and (by default, see
+`jailbreak`) fail if they don’t.
 
-The package resolution is done by the `haskellPackages.callPackage` function,
+The package resolution is done by the `haskellPackages.callPackage` function
 which will, e.g., use `haskellPackages.aeson` for a package input of name
 `aeson`.
 While this is the default behavior, it is possible to override the dependencies