about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-09 18:03:13 +0200
committersternenseemann <sternenseemann@systemli.org>2023-01-14 22:33:35 +0100
commit0a66465b22dbb0ce397d9ce694a9776520c61aee (patch)
tree5730780488d4ddabdafec96263ec6233f8466f8c /pkgs/development/haskell-modules
parenta07b95dc0c3374514280d50b3559b7136938062b (diff)
downloadnixlib-0a66465b22dbb0ce397d9ce694a9776520c61aee.tar
nixlib-0a66465b22dbb0ce397d9ce694a9776520c61aee.tar.gz
nixlib-0a66465b22dbb0ce397d9ce694a9776520c61aee.tar.bz2
nixlib-0a66465b22dbb0ce397d9ce694a9776520c61aee.tar.lz
nixlib-0a66465b22dbb0ce397d9ce694a9776520c61aee.tar.xz
nixlib-0a66465b22dbb0ce397d9ce694a9776520c61aee.tar.zst
nixlib-0a66465b22dbb0ce397d9ce694a9776520c61aee.zip
doc/haskell: (re-)init haskell manual section
This restarts a Haskell section in the nixpkgs manual. The content
presented here has been written from scratch, although some parts of it
take inspiration from the existing haskell4nix documentation.

It is by no means complete, the idea is mostly to get the ball rolling
in some way. Upcoming tasks are hinted at in the comments in the
documentation file.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/lib/compose.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/lib/compose.nix b/pkgs/development/haskell-modules/lib/compose.nix
index 6d0e91e3339b..ebaba1a22fa6 100644
--- a/pkgs/development/haskell-modules/lib/compose.nix
+++ b/pkgs/development/haskell-modules/lib/compose.nix
@@ -109,8 +109,9 @@ rec {
    */
   dontCheck = overrideCabal (drv: { doCheck = false; });
 
-  /* doBenchmark enables dependency checking, compilation and execution
+  /* doBenchmark enables dependency checking and compilation
      for benchmarks listed in the package description file.
+     Benchmarks are, however, not executed at the moment.
    */
   doBenchmark = overrideCabal (drv: { doBenchmark = true; });
   /* dontBenchmark disables dependency checking, compilation and execution