diff --git a/README.md b/README.md index 68e78a53fe23199ba2086cddbeaa3bc6d9eb6f5d..acb5a7d678685048f2b73aa78e9622f7c1e5eb39 100644 --- a/README.md +++ b/README.md @@ -70,3 +70,11 @@ To build all packages, run ``` nix run develop/#feedback -- build ``` + +## Hoogle + +To run a hoogle server containing the entire package set. Do + +``` +nix run .#run-hoogle +``` diff --git a/develop/flake.lock b/develop/flake.lock index 4fcbac4071adf436f07cafc87af9a6a5cd82a3c2..9cc0745d36a2099b0dcbc70704fa62a29ba31b93 100644 --- a/develop/flake.lock +++ b/develop/flake.lock @@ -577,16 +577,16 @@ "nixpkgs": "nixpkgs_8" }, "locked": { - "lastModified": 1697280312, - "narHash": "sha256-GXjT8XYd0OvyKKnDJjK1w8ler2tN41lvK/dHCeELhGY=", - "ref": "refs/tags/0.10.4", - "rev": "d57f6cd65403e0b8a404088384fd646ac85fb713", - "revCount": 181, + "lastModified": 1698091055, + "narHash": "sha256-RxZRtv/ccP9lwcU54OQCFfgWK8C8eyKSbT+vW6Bl7ck=", + "ref": "refs/tags/0.11.0", + "rev": "0f5e5bad673d0c977246e6d96f39a6867e04fad3", + "revCount": 190, "type": "git", "url": "https://gitlab.horizon-haskell.net/haskell/horizon-gen-nix" }, "original": { - "ref": "refs/tags/0.10.4", + "ref": "refs/tags/0.11.0", "type": "git", "url": "https://gitlab.horizon-haskell.net/haskell/horizon-gen-nix" } diff --git a/develop/flake.nix b/develop/flake.nix index b86eb432a1f06496db8464437d49de0685fe85f9..6e16f010878856191d14b30bc56c2b8ce84d9b95 100644 --- a/develop/flake.nix +++ b/develop/flake.nix @@ -9,7 +9,7 @@ feedback.url = "github:NorfairKing/feedback"; flake-parts.url = "github:hercules-ci/flake-parts"; flake-to-gitlab-ci.url = "git+https://gitlab.nixica.dev/haskell/flake-to-gitlab-ci?ref=refs/tags/0.2.4.2"; - horizon-gen-nix.url = "git+https://gitlab.horizon-haskell.net/haskell/horizon-gen-nix?ref=refs/tags/0.10.4"; + horizon-gen-nix.url = "git+https://gitlab.horizon-haskell.net/haskell/horizon-gen-nix?ref=refs/tags/0.11.0"; horizon-shell.url = "git+https://gitlab.horizon-haskell.net/shells/horizon-shell?ref=refs/tags/0.0.9"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; }; diff --git a/flake.lock b/flake.lock index 52d69b7f55249996c508d5cc9ed43c6159a6e7a1..fb2680d91c89dcb3a58550e1ef2d45715746086f 100644 --- a/flake.lock +++ b/flake.lock @@ -73,11 +73,11 @@ "nixpkgs": "nixpkgs_2" }, "locked": { - "lastModified": 1699043048, - "narHash": "sha256-s66alk5vDvyvmMm8HqBqnqTI/qJN401X3N/P9scbV/A=", + "lastModified": 1699044695, + "narHash": "sha256-1PrOuOa1U+b6eJy7cB76Wt1UU4x312QM7YxQ/eKAfTY=", "ref": "lts/ghc-9.4.x", - "rev": "e0f3d370590ed74e733741b947492702dab286ae", - "revCount": 1180, + "rev": "f57ca82b03c477708644b26bae9fac2607ae6c6d", + "revCount": 1182, "type": "git", "url": "https://gitlab.horizon-haskell.net/package-sets/horizon-core" }, @@ -211,11 +211,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1698931758, - "narHash": "sha256-pwl9xS9JFMXXR1lUP/QOqO9hiZKukEcVUU1A0DKQwi4=", + "lastModified": 1699094435, + "narHash": "sha256-YLZ5/KKZ1PyLrm2MO8UxRe4H3M0/oaYqNhSlq6FDeeA=", "owner": "nixos", "repo": "nixpkgs", - "rev": "b644d97bda6dae837d577e28383c10aa51e5e2d2", + "rev": "9d5d25bbfe8c0297ebe85324addcb5020ed1a454", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index f57aca3db9e37e22e186c4681953155a65f669d0..fd4d506b24069a83577ec2fe6a43241f846e3f15 100644 --- a/flake.nix +++ b/flake.nix @@ -48,9 +48,19 @@ packages = filterAttrs (_: isDerivation) legacyPackages; + horizon-hoogle = pkgs.writers.writeBashBin "horizon-hoogle" '' + ${legacyPackages.ghcWithHoogle (p: attrValues (packages // { hoogle = null; }))}/bin/hoogle server --local + ''; in { + apps = { + run-hoogle = { + type = "app"; + program = "${horizon-hoogle}/bin/horizon-core-hoogle"; + }; + }; + checks = with lint-utils.linters.${system}; { dhall-format = dhall-format { src = self; }; nixpkgs-fmt = nixpkgs-fmt { src = self; find = "flake.nix"; }; diff --git a/pkgs/BNFC.nix b/pkgs/BNFC.nix index 78e42d2e479821bbfbcd92f8b305f2a4c32b2178..bd6707f9f30360142d7485871419331250dbec3a 100644 --- a/pkgs/BNFC.nix +++ b/pkgs/BNFC.nix @@ -22,7 +22,7 @@ mkDerivation { testToolDepends = [ alex happy hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Boolean.nix b/pkgs/Boolean.nix index 229f53dc50f62704c63a53eb4f973c6110e3646d..880ff4dcc4ad4816a129cc96c4793b1c330efc55 100644 --- a/pkgs/Boolean.nix +++ b/pkgs/Boolean.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Chart-diagrams.nix b/pkgs/Chart-diagrams.nix index 0e48975462e39dc428d1b1818a36ef4a22709e8e..62f3317b76c101308fae353896587f59071144a0 100644 --- a/pkgs/Chart-diagrams.nix +++ b/pkgs/Chart-diagrams.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Chart.nix b/pkgs/Chart.nix index 0a7815416f7685e290cc720db1f18295ee9da06a..91be09380364aa06e90ae7a3023ad26e668cab2d 100644 --- a/pkgs/Chart.nix +++ b/pkgs/Chart.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Decimal.nix b/pkgs/Decimal.nix index 5d1e10e7e2e82706dd1c9173ae19bef3d2c5d44c..9585d55e50ba22cb3e00933130209ad945acf0c8 100644 --- a/pkgs/Decimal.nix +++ b/pkgs/Decimal.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/HTF.nix b/pkgs/HTF.nix index dd1ecc282bdbce25e77633b7e88522180c08b908..e698761d4fbd4747d74d905440515e87cf389bcb 100644 --- a/pkgs/HTF.nix +++ b/pkgs/HTF.nix @@ -31,7 +31,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/HTTP.nix b/pkgs/HTTP.nix index 49a9a687d60525065bcebbc2b4d7fadab107f1a3..ddefd73f2bca9603c99ad1cccaf75e164cd429fa 100644 --- a/pkgs/HTTP.nix +++ b/pkgs/HTTP.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/HUnit.nix b/pkgs/HUnit.nix index 48893c792b7aab3f878318d4057a7d126517d14d..d6304e3e41c6f8f515f5131bf74a29f37a1ecf2f 100644 --- a/pkgs/HUnit.nix +++ b/pkgs/HUnit.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base call-stack deepseq filepath ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/HaskellNet.nix b/pkgs/HaskellNet.nix index 621c13a1453585c89f9fbe9174e6ef98cc521a66..39ccd595932e0dfc51a564bcb168a4211377e0bf 100644 --- a/pkgs/HaskellNet.nix +++ b/pkgs/HaskellNet.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Hclip.nix b/pkgs/Hclip.nix index 7b26050bf73a5a5f159842803c8fa25cce6454e5..f5fe5d56de08eb23aec3b0cf6a8a8ce730cc9734 100644 --- a/pkgs/Hclip.nix +++ b/pkgs/Hclip.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base mtl process strict ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/HsOpenSSL.nix b/pkgs/HsOpenSSL.nix index 8d17ee9db214334a6d701507f5ba0f09e31bfb9e..c751100151228f1e620a874768910ddaed413794 100644 --- a/pkgs/HsOpenSSL.nix +++ b/pkgs/HsOpenSSL.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base bytestring ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/HsYAML.nix b/pkgs/HsYAML.nix index 48f64f1d4ae7b8d0a4ea7a9b9689295d632de3d4..d9a6434badddc083cd2f456d0f369fe671bd4781 100644 --- a/pkgs/HsYAML.nix +++ b/pkgs/HsYAML.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/JuicyPixels.nix b/pkgs/JuicyPixels.nix index f231e89d0785ae947a41e4deeed8c8bf069c4773..debe86ee8c1490acceb4c0d6d68a11f237e0ae3b 100644 --- a/pkgs/JuicyPixels.nix +++ b/pkgs/JuicyPixels.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ListLike.nix b/pkgs/ListLike.nix index 84a5ce220292923363b1bf9d641a0c74d67d6bf2..3378e9acecc7b2a0791e6380f38aa6c19bab19b3 100644 --- a/pkgs/ListLike.nix +++ b/pkgs/ListLike.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/MemoTrie.nix b/pkgs/MemoTrie.nix index 166d54ee7ec4488fc2828928283455d56bf40db0..9b404ab0e0e61dc400f17c2f5c31f8dd62fa4237 100644 --- a/pkgs/MemoTrie.nix +++ b/pkgs/MemoTrie.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base newtype-generics ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/MonadPrompt.nix b/pkgs/MonadPrompt.nix index 8c97c65eec8ef36c2434a8d4944ebb83cb89f215..d0b8a5288b21bc3243a0b4c5b8e95ef8995b7bd3 100644 --- a/pkgs/MonadPrompt.nix +++ b/pkgs/MonadPrompt.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base mtl ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/NumInstances.nix b/pkgs/NumInstances.nix index 8f981fe276f88a73354385556984d335f40effd4..b171fda8847c1f5a9c9073e0a2d16c7062231afd 100644 --- a/pkgs/NumInstances.nix +++ b/pkgs/NumInstances.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Only.nix b/pkgs/Only.nix index 72002751c7fcfe708a4868c0bbd8cc88f1fb23bc..af852c2d99f0c90dee85e8dd91cff3f542e86a0b 100644 --- a/pkgs/Only.nix +++ b/pkgs/Only.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base deepseq ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/OpenGLRaw.nix b/pkgs/OpenGLRaw.nix index 12d3b9fdf7159ade0408cb447d795a5c35451cdf..1ab83c46111503cb762c6800411f75083ed9c7e0 100644 --- a/pkgs/OpenGLRaw.nix +++ b/pkgs/OpenGLRaw.nix @@ -16,7 +16,7 @@ mkDerivation { librarySystemDepends = [ libGL ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/PSQueue.nix b/pkgs/PSQueue.nix index bfb9e64f70877158a6258bc43e09da04fc953b19..7a722ee2a5be8de518844d6d22aac7533fabab75 100644 --- a/pkgs/PSQueue.nix +++ b/pkgs/PSQueue.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/PyF.nix b/pkgs/PyF.nix index f768476b303d812892e19bb425a3f04aa0b2f29c..469f2daba61f1ddb8b9fc4c860711c94f9ca4a0a 100644 --- a/pkgs/PyF.nix +++ b/pkgs/PyF.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/QuickCheck.nix b/pkgs/QuickCheck.nix index c085043d6d4ebea395224afbe96ec1a686fa4cdb..ccb0d70c3863b67d0960505254432974ca627d69 100644 --- a/pkgs/QuickCheck.nix +++ b/pkgs/QuickCheck.nix @@ -15,7 +15,7 @@ mkDerivation { testHaskellDepends = [ base deepseq process ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/RSA.nix b/pkgs/RSA.nix index 3f7359142a0246d05fed92ce1b7d1a0a6bd402b7..eb8a576a653d3bec5484f6ac52b78a2657e4333e 100644 --- a/pkgs/RSA.nix +++ b/pkgs/RSA.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/SVGFonts.nix b/pkgs/SVGFonts.nix index 9e5fc6df8392c824e65b1fa68d83b5f3ae2b6407..68d23f22d5c6c51a7b20b4f219e9cbdf8344f7bc 100644 --- a/pkgs/SVGFonts.nix +++ b/pkgs/SVGFonts.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Stream.nix b/pkgs/Stream.nix index 7da4354e861434554e20f8a1a64bac399b5386f9..d3a021b6b21048dc81ade05df14829a01f6b84ea 100644 --- a/pkgs/Stream.nix +++ b/pkgs/Stream.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base lazysmallcheck QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Unique.nix b/pkgs/Unique.nix index 9c19ef26ad7187e4dc00f161e437520a3c8dfa1b..2b63796810437a85686f86da0a40ff36783bcc66 100644 --- a/pkgs/Unique.nix +++ b/pkgs/Unique.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/Unixutils.nix b/pkgs/Unixutils.nix index b0180befd7afd15af5e9a5394c0e02897459c964..79014dfe9906cecd31d5002e843a15107ebcc405 100644 --- a/pkgs/Unixutils.nix +++ b/pkgs/Unixutils.nix @@ -18,7 +18,7 @@ mkDerivation { librarySystemDepends = [ libxcrypt ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/X11-xft.nix b/pkgs/X11-xft.nix index d247cddd9b8cb7acc127fed4a80786125d260819..0c8499ea557d8e2f68634dcc9261ab7745f6e06e 100644 --- a/pkgs/X11-xft.nix +++ b/pkgs/X11-xft.nix @@ -10,7 +10,7 @@ mkDerivation { libraryPkgconfigDepends = [ libXft ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/X11.nix b/pkgs/X11.nix index 0c5695fc476a80c3bcd79fa8413351346e133839..5ec79c346c0c584e97e29176662ba65f28e2a587 100644 --- a/pkgs/X11.nix +++ b/pkgs/X11.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/abstract-deque-tests.nix b/pkgs/abstract-deque-tests.nix index 6a10aed4f0cf46c269a461154c6a68ab6fa493ad..6a91f87c6bb76d25d7bf6a3ae920cc23709ec2b8 100644 --- a/pkgs/abstract-deque-tests.nix +++ b/pkgs/abstract-deque-tests.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/active.nix b/pkgs/active.nix index 70d914b7eb8add920f840b135f9723c37ae2444d..f037f36282102b04e0916137fa9d3cdf423ca210 100644 --- a/pkgs/active.nix +++ b/pkgs/active.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base linear QuickCheck semigroups ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/aeson-qq.nix b/pkgs/aeson-qq.nix index 1d16d4698624e1f29e3452f91137d3fdc2a92465..52689bc2fad88446983031fce0193abdad3cad4b 100644 --- a/pkgs/aeson-qq.nix +++ b/pkgs/aeson-qq.nix @@ -20,7 +20,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/aeson-yaml.nix b/pkgs/aeson-yaml.nix index 8f2c4cc4c6e7e45c15490022c82ecfc17c2e8134..76511c590df63d3ff2da2b3249b727a850572b47 100644 --- a/pkgs/aeson-yaml.nix +++ b/pkgs/aeson-yaml.nix @@ -21,7 +21,7 @@ mkDerivation { testToolDepends = [ tasty-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/aeson.nix b/pkgs/aeson.nix index a20c5b7fb9843f35b410efdc5ab6194b03740259..f051b50756e35c76100f72b124a8b644cac00610 100644 --- a/pkgs/aeson.nix +++ b/pkgs/aeson.nix @@ -37,7 +37,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/alex.nix b/pkgs/alex.nix index af3237a6ebbd696ec06a3559c67264e3b6d2879b..0be213c02731719b5dd9aea774066e7bed0b07fe 100644 --- a/pkgs/alex.nix +++ b/pkgs/alex.nix @@ -13,7 +13,7 @@ mkDerivation { testHaskellDepends = [ base process ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/algebraic-graphs.nix b/pkgs/algebraic-graphs.nix index 2397175ef4239afbc79f6a5c5cbfea9bfd1a5e15..f46cccad1c28de269a330443de801f8763400691 100644 --- a/pkgs/algebraic-graphs.nix +++ b/pkgs/algebraic-graphs.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/alsa-core.nix b/pkgs/alsa-core.nix index b8a5124877d916a00611a4e063e09799e3b62592..9291c3b39a96eaa1e52bbd62dd3be9e79c5acdd9 100644 --- a/pkgs/alsa-core.nix +++ b/pkgs/alsa-core.nix @@ -10,7 +10,7 @@ mkDerivation { libraryPkgconfigDepends = [ alsa-lib ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/alsa-mixer.nix b/pkgs/alsa-mixer.nix index d91f64f2a0eaff0b1b51b7ccfa444163a76c8bcc..23a59df437e65a487dd341b69700ece65e2a17f9 100644 --- a/pkgs/alsa-mixer.nix +++ b/pkgs/alsa-mixer.nix @@ -11,7 +11,7 @@ mkDerivation { libraryToolDepends = [ c2hs ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ap-normalize.nix b/pkgs/ap-normalize.nix index 7ff47aa4330120a6afa34d6ce39f3112322411ac..fcef340adfc4519e66481ce57868327aaa076091 100644 --- a/pkgs/ap-normalize.nix +++ b/pkgs/ap-normalize.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base inspection-testing transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/apecs.nix b/pkgs/apecs.nix index 5084c9c7b8a2e97e90bdede7a3637cb2047fd726..fe440894f7049473bdcf3337df9336337607a41b 100644 --- a/pkgs/apecs.nix +++ b/pkgs/apecs.nix @@ -17,7 +17,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion linear ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/apply-refact.nix b/pkgs/apply-refact.nix index 20fe198b4c1c7569d972273814852a3f198c7113..cbd7763617c5f2bc19d7f839ff8e5aa74f81dc14 100644 --- a/pkgs/apply-refact.nix +++ b/pkgs/apply-refact.nix @@ -28,7 +28,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/async-timer.nix b/pkgs/async-timer.nix index cf39ecc3bf027182a3c39730fbfd17e448ba90db..3617f0deacfef9f817dc56c48b77181bbb921e08 100644 --- a/pkgs/async-timer.nix +++ b/pkgs/async-timer.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/attoparsec-binary.nix b/pkgs/attoparsec-binary.nix index 3a91861f00399b6dc4f3c77564e05c20c929ee82..eb569243414c875772c28cdbbb28a5d4dc1b6072 100644 --- a/pkgs/attoparsec-binary.nix +++ b/pkgs/attoparsec-binary.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ attoparsec base bytestring ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/attoparsec-iso8601.nix b/pkgs/attoparsec-iso8601.nix index c924c8da65ff13c6ac4288751d754494acaef7bc..792661d79774855e924fb25ec270fe4b66c6fb20 100644 --- a/pkgs/attoparsec-iso8601.nix +++ b/pkgs/attoparsec-iso8601.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/authenticate-oauth.nix b/pkgs/authenticate-oauth.nix index 0c7aa7ee6856320d3c5358c0d75b497c6089126c..9d062610d78d196dd4239da6e34fb4cc3799267c 100644 --- a/pkgs/authenticate-oauth.nix +++ b/pkgs/authenticate-oauth.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/autodocodec-servant-multipart.nix b/pkgs/autodocodec-servant-multipart.nix index 3eca80dde2d50ee23a7529d065444bce7e1c6ccf..33134d3ea5a03b2f53b41bcdce7fdaf8e16787be 100644 --- a/pkgs/autodocodec-servant-multipart.nix +++ b/pkgs/autodocodec-servant-multipart.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/autoexporter.nix b/pkgs/autoexporter.nix index c8c301f91a139d7e00ab8909eb999736eeec598c..7eb092c7abe8eedc9f30af6788b6d3029ce3bf05 100644 --- a/pkgs/autoexporter.nix +++ b/pkgs/autoexporter.nix @@ -10,7 +10,7 @@ mkDerivation { executableHaskellDepends = [ base Cabal directory filepath ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/base-prelude.nix b/pkgs/base-prelude.nix index 687358cb0b44fb1b5a67454e3b428a43ea05917e..5c67dea2c7c8ad56a839c3499a2e132fe313cb16 100644 --- a/pkgs/base-prelude.nix +++ b/pkgs/base-prelude.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/base58-bytestring.nix b/pkgs/base58-bytestring.nix index 779a4d5661eff78c62e31e7e75a456bd735fcae4..c473c7738cfe7af438e04fb7323e71b124e71075 100644 --- a/pkgs/base58-bytestring.nix +++ b/pkgs/base58-bytestring.nix @@ -17,7 +17,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/base64-bytestring-type.nix b/pkgs/base64-bytestring-type.nix index 78c4f9ea28e4c8384afdcf276a69356133f0ee6f..f755998a42ed9d470ca106c7067b28ce68c8064c 100644 --- a/pkgs/base64-bytestring-type.nix +++ b/pkgs/base64-bytestring-type.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/base64-bytestring.nix b/pkgs/base64-bytestring.nix index 4d71a99fe3a9554a66b16c4b5742e6ebc9264ff0..997597f0c7fcbd6990508d1a8ebbfe536fb6afaa 100644 --- a/pkgs/base64-bytestring.nix +++ b/pkgs/base64-bytestring.nix @@ -19,7 +19,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring criterion deepseq ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/base64.nix b/pkgs/base64.nix index 25ec03d20ddc84b628947b080c737005cdaee90f..2b0831493df60de0021022d1bfd08d81b779679f 100644 --- a/pkgs/base64.nix +++ b/pkgs/base64.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/beam-core.nix b/pkgs/beam-core.nix index 5930a1f85e8dce86ff25b2867084799853b91037..a58120c65bddd266ca7d2a46b1eaca577a0720af 100644 --- a/pkgs/beam-core.nix +++ b/pkgs/beam-core.nix @@ -26,7 +26,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/beam-migrate.nix b/pkgs/beam-migrate.nix index ddd6f0d9385b1dc07e2069da65ee3cfb293ab01e..183e310dbe1aef65bce4cdc461661b285c3ce5e9 100644 --- a/pkgs/beam-migrate.nix +++ b/pkgs/beam-migrate.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/beam-postgres.nix b/pkgs/beam-postgres.nix index 7df1732b259eeab086b5bc3f0151f6e4b9aa3abd..7c359007521eb31ad46233df6687f3489968f46c 100644 --- a/pkgs/beam-postgres.nix +++ b/pkgs/beam-postgres.nix @@ -31,7 +31,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/beam-sqlite.nix b/pkgs/beam-sqlite.nix index 8bee779dc2927735a8e1b09f2f1bdd297899ac5a..cf504af576c20f7cc7691030e5a85217acb60a94 100644 --- a/pkgs/beam-sqlite.nix +++ b/pkgs/beam-sqlite.nix @@ -28,7 +28,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/bech32-th.nix b/pkgs/bech32-th.nix index 9bbec035069c9f0b9a1f9fa84a7b64e326d67496..a01de986a98794c4248cd7ad1d5beece1523d4ee 100644 --- a/pkgs/bech32-th.nix +++ b/pkgs/bech32-th.nix @@ -13,7 +13,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/bech32.nix b/pkgs/bech32.nix index c27f300670fcdd8a677a1c4e10e3029f1fd3b318..0ae0687880955836e80a96a652e3680cb95b101d 100644 --- a/pkgs/bech32.nix +++ b/pkgs/bech32.nix @@ -24,7 +24,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/bin.nix b/pkgs/bin.nix index 5946dafdbfe39579e032fecaeb9a7d4ccfe7dfe4..ab1d77a57be2f15af6ca9fc863d73b84e21b6543 100644 --- a/pkgs/bin.nix +++ b/pkgs/bin.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/binary-orphans.nix b/pkgs/binary-orphans.nix index 3fea9ac1d1e3a75a3d38b897b9b5c1f16a640745..8d3af216788fca560209d22fa166dcb1a636ad4a 100644 --- a/pkgs/binary-orphans.nix +++ b/pkgs/binary-orphans.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/binary-parser.nix b/pkgs/binary-parser.nix index 941b59a6f0f85afc96959c89d9a78fb6ab3cb4ed..50e3ba7b7cd0bdc2f483ac03a72bb9f50b3ca1e6 100644 --- a/pkgs/binary-parser.nix +++ b/pkgs/binary-parser.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/blaze-svg.nix b/pkgs/blaze-svg.nix index 1a16758be57ab67aa0281ab639e257922a5e3c39..075a60f83eae09059b2c060e0d67ca09908ccf47 100644 --- a/pkgs/blaze-svg.nix +++ b/pkgs/blaze-svg.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base blaze-markup mtl ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/blaze-textual.nix b/pkgs/blaze-textual.nix index 8fd43eb1992b6913641d411bb7ecaf75f2615286..a051274e9a84160fc6e9c09d0d150b6b5616f62a 100644 --- a/pkgs/blaze-textual.nix +++ b/pkgs/blaze-textual.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/breakpoint.nix b/pkgs/breakpoint.nix index 29850143069208abc1902b7bed728c18e15f0d72..fc16262af90d64240b4a84b62722e329ba2e7717 100644 --- a/pkgs/breakpoint.nix +++ b/pkgs/breakpoint.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base containers tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/brick.nix b/pkgs/brick.nix index e457ddfdc9bc927ffd3407a04d42983149248ed9..7d30a109e5b32a3a0ccd760d8c743dffe51c49c2 100644 --- a/pkgs/brick.nix +++ b/pkgs/brick.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/bytes.nix b/pkgs/bytes.nix index eaab0711454ee7e26d2df09b67aacdcbb54f85f9..f78ebe4f599ec4e5233885dee21fe2ae6da9e274 100644 --- a/pkgs/bytes.nix +++ b/pkgs/bytes.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/bytestring-strict-builder.nix b/pkgs/bytestring-strict-builder.nix index 5b6b919b272e04d6f63a217312fd40ad906862ee..6f5cf8b003fcb6da9f25953918a07622ca027d06 100644 --- a/pkgs/bytestring-strict-builder.nix +++ b/pkgs/bytestring-strict-builder.nix @@ -15,7 +15,7 @@ mkDerivation { benchmarkHaskellDepends = [ criterion rerebase ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/bytestring-tree-builder.nix b/pkgs/bytestring-tree-builder.nix index d6abcb57e5f1270e821306526c79240338a7c524..c154dd9b82c29d5fa6e2a9fa77d210a56d0ed2a6 100644 --- a/pkgs/bytestring-tree-builder.nix +++ b/pkgs/bytestring-tree-builder.nix @@ -16,7 +16,7 @@ mkDerivation { benchmarkHaskellDepends = [ base-prelude bytestring criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/c2hs.nix b/pkgs/c2hs.nix index ceb0d2ff16a60406c89b34dc638a28fd67ade9ea..9514edd610ad12051e6bf72ab013d029a443fce9 100644 --- a/pkgs/c2hs.nix +++ b/pkgs/c2hs.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cabal-install-solver.nix b/pkgs/cabal-install-solver.nix deleted file mode 100644 index 25131bada7c33f1e20f0b6433fbed88d382db7a5..0000000000000000000000000000000000000000 --- a/pkgs/cabal-install-solver.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ mkDerivation, Cabal, Cabal-syntax, array, base, bytestring -, containers, edit-distance, filepath, lib, mtl, pretty, tasty -, tasty-hunit, tasty-quickcheck, transformers -}: -mkDerivation { - pname = "cabal-install-solver"; - version = "3.10.1.0"; - sha256 = "2c0d9edd4ccd746e9bf8ab4f92b1ecffe2f56eae29395c67ef5ca091a6f49f37"; - revision = "1"; - editedCabalFile = "1l3qhaiv0m2xc5vscggd2drinam1k4x0l3vfvvz15xrpvxypdv4d"; - isLibrary = true; - isExecutable = false; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - array base bytestring Cabal Cabal-syntax containers edit-distance - filepath mtl pretty transformers - ]; - testHaskellDepends = [ - base Cabal Cabal-syntax tasty tasty-hunit tasty-quickcheck - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "http://www.haskell.org/cabal/"; - description = "The command-line interface for Cabal and Hackage"; - license = lib.licenses.bsd3; - broken = false; -} \ No newline at end of file diff --git a/pkgs/cabal-install.nix b/pkgs/cabal-install.nix deleted file mode 100644 index 1db577e343ed42292b149fdb3155fc1ab58e8170..0000000000000000000000000000000000000000 --- a/pkgs/cabal-install.nix +++ /dev/null @@ -1,53 +0,0 @@ -{ mkDerivation, Cabal, Cabal-QuickCheck, Cabal-described -, Cabal-syntax, Cabal-tree-diff, HTTP, QuickCheck, array, async -, base, base16-bytestring, binary, bytestring, cabal-install-solver -, containers, cryptohash-sha256, directory, echo, edit-distance -, exceptions, filepath, hackage-security, hashable, lib, lukko, mtl -, network-uri, parsec, pretty, pretty-show, process, random -, regex-base, regex-posix, resolv, safe-exceptions, stm, tagged -, tar, tasty, tasty-expected-failure, tasty-golden, tasty-hunit -, tasty-quickcheck, text, time, tree-diff, unix, zlib -}: -mkDerivation { - pname = "cabal-install"; - version = "3.10.1.0"; - sha256 = "995de368555449230e0762b259377ed720798717f4dd26a4fa711e8e41c7838d"; - revision = "1"; - editedCabalFile = "0h1ra9kw7mk70202whiphbdyvknm7jbhqhkgw4h8abb1sgffhs3n"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - array async base base16-bytestring binary bytestring Cabal - cabal-install-solver Cabal-syntax containers cryptohash-sha256 - directory echo edit-distance exceptions filepath hackage-security - hashable HTTP lukko mtl network-uri parsec pretty process random - regex-base regex-posix resolv safe-exceptions stm tar text time - unix zlib - ]; - executableHaskellDepends = [ - base Cabal Cabal-syntax directory filepath - ]; - testHaskellDepends = [ - array base bytestring Cabal Cabal-described cabal-install-solver - Cabal-QuickCheck Cabal-syntax Cabal-tree-diff containers directory - filepath hashable mtl network-uri pretty-show QuickCheck random - tagged tar tasty tasty-expected-failure tasty-golden tasty-hunit - tasty-quickcheck time tree-diff zlib - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - postInstall = '' - mkdir -p $out/share/bash-completion - mv bash-completion $out/share/bash-completion/completions - ''; - homepage = "http://www.haskell.org/cabal/"; - description = "The command-line interface for Cabal and Hackage"; - license = lib.licenses.bsd3; - broken = false; -} \ No newline at end of file diff --git a/pkgs/cache.nix b/pkgs/cache.nix index 55e59ce06a2f807fb0a48bf86d52c93b90bfbfea..fafe0d67e74432be93721aeb36417714fcf484d1 100644 --- a/pkgs/cache.nix +++ b/pkgs/cache.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base clock hspec stm transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/canonical-json.nix b/pkgs/canonical-json.nix index 33f4f483457a52a04e3e2e227c0aa8df514e6521..8a3462049fd0fdf5b2ec75d5d28754eaeda95f94 100644 --- a/pkgs/canonical-json.nix +++ b/pkgs/canonical-json.nix @@ -19,7 +19,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring containers criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/casing.nix b/pkgs/casing.nix index 040a4569e132ec58c23ccdb63ef81e05d98e51c8..bcecd4c73d5022e3d3e8103f2865810b90efcd87 100644 --- a/pkgs/casing.nix +++ b/pkgs/casing.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cassava-megaparsec.nix b/pkgs/cassava-megaparsec.nix index 457f118d3f70491ad9875fa789a7c8c6241dd49f..8d277119a081a088b78385f2901eea12dbb7624f 100644 --- a/pkgs/cassava-megaparsec.nix +++ b/pkgs/cassava-megaparsec.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cassava.nix b/pkgs/cassava.nix index 0d208876ed5118a5e73374afb04ecac6706c4901..206b013528a767e51d518aaabfefc77115c6b719 100644 --- a/pkgs/cassava.nix +++ b/pkgs/cassava.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cheapskate.nix b/pkgs/cheapskate.nix index 7b8cc34d38c2466237abfc93c4b95c15e8b2c156..7721f18e9da61b0ba9c62922841212b85256734e 100644 --- a/pkgs/cheapskate.nix +++ b/pkgs/cheapskate.nix @@ -18,7 +18,7 @@ mkDerivation { executableHaskellDepends = [ base blaze-html bytestring text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/checkers.nix b/pkgs/checkers.nix index a6777063e9b604d03fc7b1c9516bccfe09045a76..63d80d9ec7e34d1b998124043e24cd4c478bb723 100644 --- a/pkgs/checkers.nix +++ b/pkgs/checkers.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/chell-quickcheck.nix b/pkgs/chell-quickcheck.nix index d07ae6ae8b315064e6732dc42e05f7461066cc70..ce8d2c4ea40e8cd32b7f59359500223dc6860407 100644 --- a/pkgs/chell-quickcheck.nix +++ b/pkgs/chell-quickcheck.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base chell QuickCheck random ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/chell.nix b/pkgs/chell.nix index 9602e4a766e64679339c3608eeed72137e937f71..5183c529d339876900622fe2e01843bf83a01ddb 100644 --- a/pkgs/chell.nix +++ b/pkgs/chell.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/circle-packing.nix b/pkgs/circle-packing.nix index 37d6955d32ff6dbea84b4d1f2c653907bb1258e1..8da62ffd095b3b78f5c7b0d6e240b48aed44cd1d 100644 --- a/pkgs/circle-packing.nix +++ b/pkgs/circle-packing.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/citeproc.nix b/pkgs/citeproc.nix index d010f9cdd13f55f6e37e6a1c4c2d69edb94b0d70..e1d4d6fefe6b21a372c8d768e84ec93d4d23beaa 100644 --- a/pkgs/citeproc.nix +++ b/pkgs/citeproc.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cmark-gfm.nix b/pkgs/cmark-gfm.nix index 3cdb627dc9c12a194f7c85945297ad8c057358c6..5e66e91070a5825aeffbae1ec9e35d8020341b87 100644 --- a/pkgs/cmark-gfm.nix +++ b/pkgs/cmark-gfm.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/co-log-core.nix b/pkgs/co-log-core.nix index c59a3e129856273c0d9cee57002b2e8044adab6f..5239073bc3fd9dba82261618dbd417218ee7074b 100644 --- a/pkgs/co-log-core.nix +++ b/pkgs/co-log-core.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base doctest Glob ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/co-log-polysemy.nix b/pkgs/co-log-polysemy.nix index ad2be0921b3d6fd3fce001cc7e7035260cc222a3..ea657e40aaae237660bf2b8d68a59ead25f4fedd 100644 --- a/pkgs/co-log-polysemy.nix +++ b/pkgs/co-log-polysemy.nix @@ -10,7 +10,7 @@ mkDerivation { executableHaskellDepends = [ base co-log-core polysemy ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/colourista.nix b/pkgs/colourista.nix index cdeb051bfb676f958659506a568df92d4e91efe1..7e5c86fde9d9fa3f1013ebf7d30c3b4e99b63a50 100644 --- a/pkgs/colourista.nix +++ b/pkgs/colourista.nix @@ -13,7 +13,7 @@ mkDerivation { testHaskellDepends = [ base bytestring hspec text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/commonmark-extensions.nix b/pkgs/commonmark-extensions.nix index c86c911d323a56d339e09be261d5fcf4781e3dfb..90104affa600ee0a3def28a87ba8ebdcc05b5ccb 100644 --- a/pkgs/commonmark-extensions.nix +++ b/pkgs/commonmark-extensions.nix @@ -19,7 +19,7 @@ mkDerivation { benchmarkHaskellDepends = [ base commonmark tasty-bench text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/commonmark-pandoc.nix b/pkgs/commonmark-pandoc.nix index cc3c42b63ec01abb1df340e45c58f675bff81f03..5bb97f40aa9359528eb63cc9678bb8732556eeab 100644 --- a/pkgs/commonmark-pandoc.nix +++ b/pkgs/commonmark-pandoc.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/commonmark.nix b/pkgs/commonmark.nix index 46f9f312121bdde4d2c64a632f5d0bb3419c399b..d2ce7e398518b030c8c51c71b87aa50d8d4f18b4 100644 --- a/pkgs/commonmark.nix +++ b/pkgs/commonmark.nix @@ -20,7 +20,7 @@ mkDerivation { benchmarkHaskellDepends = [ base tasty-bench text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/commutative-semigroups.nix b/pkgs/commutative-semigroups.nix index 05d6e73b58d2dc19d9710d53971d5c94bec815c6..fae3fa949ffc08a91f2b295117ed160bb99e2350 100644 --- a/pkgs/commutative-semigroups.nix +++ b/pkgs/commutative-semigroups.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base containers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/compact.nix b/pkgs/compact.nix index 51a4e79346c5250ed720e556896a849f93acffca..5d6d83644f573bb95f63e71205c010147681b8e7 100644 --- a/pkgs/compact.nix +++ b/pkgs/compact.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base directory ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/compactable.nix b/pkgs/compactable.nix index 754372f30dade3d1edddea671a2c648c80873630..878a1f2ed53987735b0d0534dd47399e0899d83c 100644 --- a/pkgs/compactable.nix +++ b/pkgs/compactable.nix @@ -27,7 +27,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/composite-base.nix b/pkgs/composite-base.nix index da86cfc7e2aaa022faf91860b0b1476272d3a92a..afae5578587805d87e69abdfac5c703e720ea8ce 100644 --- a/pkgs/composite-base.nix +++ b/pkgs/composite-base.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/composite-cassava.nix b/pkgs/composite-cassava.nix index 12de1ff7774892f6dab88dc4452cd24a9677d595..bbd86b87a344b0d8e8f14ae66b8a3e7aa3b73258 100644 --- a/pkgs/composite-cassava.nix +++ b/pkgs/composite-cassava.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/composite-dhall.nix b/pkgs/composite-dhall.nix index 7bbc2b75ff34eb74418a91370d9b5c14df400a51..7f408bbfaeea820cc4b93e5d6f80c36861f70ced 100644 --- a/pkgs/composite-dhall.nix +++ b/pkgs/composite-dhall.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/composite-lens-extra.nix b/pkgs/composite-lens-extra.nix index f914ef2d5a110eacd52a52c1f92c593cfcab4498..8f2d10631944291d5a2fa5e85b4c544bb94d0f5b 100644 --- a/pkgs/composite-lens-extra.nix +++ b/pkgs/composite-lens-extra.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base composite-base lens vinyl ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/composite-tuple.nix b/pkgs/composite-tuple.nix index 593945ddf534f014fc36292dc8596db16b355522..dca08ac523af3b3a21bf4c54c5e364d7f3564d43 100644 --- a/pkgs/composite-tuple.nix +++ b/pkgs/composite-tuple.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base composite-base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/composition-prelude.nix b/pkgs/composition-prelude.nix index 7452b989d232cb99619eb6149b01bfeb20e31ff7..caca02b5132b3de9428bcf9610d659c6b894cdd4 100644 --- a/pkgs/composition-prelude.nix +++ b/pkgs/composition-prelude.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/concise.nix b/pkgs/concise.nix index 25d8f519f9ebc1a94ccae848b839db1dec630088..ff0c7919176aa671d4363a6ee04858a540223323 100644 --- a/pkgs/concise.nix +++ b/pkgs/concise.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/concurrent-extra.nix b/pkgs/concurrent-extra.nix index a5f0bd9ffe2322b92d9c37f868abe7ebcffc85a8..0c478365089e20f98ff822bc6ecc1142da03ad30 100644 --- a/pkgs/concurrent-extra.nix +++ b/pkgs/concurrent-extra.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/conduit-parse.nix b/pkgs/conduit-parse.nix index f3cd3cbcb10bbda17a5bcf58c9110cf8e79978f2..f47770c7be20a89ca48de5750e52a8b79ee0f287 100644 --- a/pkgs/conduit-parse.nix +++ b/pkgs/conduit-parse.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/connection.nix b/pkgs/connection.nix deleted file mode 100644 index 676571c1d01e80cd4a05de3ebbe7449caaeaa73d..0000000000000000000000000000000000000000 --- a/pkgs/connection.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ mkDerivation, base, basement, bytestring, containers -, data-default-class, lib, network, socks, tls, x509, x509-store -, x509-system, x509-validation -}: -mkDerivation { - pname = "connection"; - version = "0.3.1"; - sha256 = "5d759589c532c34d87bfc4f6fcb732bf55b55a93559d3b94229e8347a15375d9"; - revision = "2"; - editedCabalFile = "1z6v1mhq3wvkbbvhaazlxli3d494iarsqvbx4qwx6xqn1pqz5jrx"; - isLibrary = true; - isExecutable = false; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - base basement bytestring containers data-default-class network - socks tls x509 x509-store x509-system x509-validation - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/vincenthz/hs-connection"; - description = "Simple and easy network connections API"; - license = lib.licenses.bsd3; - broken = false; -} \ No newline at end of file diff --git a/pkgs/constraints-extras.nix b/pkgs/constraints-extras.nix index ace5e5b70986409eb705f0deb0c1390b10ab79d7..73a89a5d75d5c8085d17c5db8edeed1b84226ce4 100644 --- a/pkgs/constraints-extras.nix +++ b/pkgs/constraints-extras.nix @@ -12,7 +12,7 @@ mkDerivation { executableHaskellDepends = [ aeson base constraints ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/contravariant-extras.nix b/pkgs/contravariant-extras.nix index 2303286d71aad5d273d48f41d26d6268bbb81916..2779cc12d994566c1a4d216e2171b4af8edf499f 100644 --- a/pkgs/contravariant-extras.nix +++ b/pkgs/contravariant-extras.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/control-monad-free.nix b/pkgs/control-monad-free.nix index efe4a47f25122fe7cf2466676034e0d6ccdba23c..450fca589e8a8d3c61cc029854f035b67051e85a 100644 --- a/pkgs/control-monad-free.nix +++ b/pkgs/control-monad-free.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cpphs.nix b/pkgs/cpphs.nix index 24efbc7df757d8b240d8fc5f3ff9ceacab5f0198..5522f545c1fe6b701ec5c0a5f4acf3b16157c7ec 100644 --- a/pkgs/cpphs.nix +++ b/pkgs/cpphs.nix @@ -12,7 +12,7 @@ mkDerivation { executableHaskellDepends = [ base directory polyparse time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/criterion.nix b/pkgs/criterion.nix index c9168567cbf51a06d1ef2d992b45e5a443a93f0d..8668e4831c7a86937b42d121af16de2f7d000fc6 100644 --- a/pkgs/criterion.nix +++ b/pkgs/criterion.nix @@ -32,7 +32,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/crypto-pubkey-types.nix b/pkgs/crypto-pubkey-types.nix index 56bcf30853e8489f4833cef6187ca4ac4b051092..6ec958e2eeb8108100645f252de61f7524b44363 100644 --- a/pkgs/crypto-pubkey-types.nix +++ b/pkgs/crypto-pubkey-types.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ asn1-encoding asn1-types base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cryptohash-md5.nix b/pkgs/cryptohash-md5.nix index 6d3bc5cdf99dd91e68f11cc88971fb4d430bc985..0adadd0d675a756c296d7180f4ed696f1ea48fea 100644 --- a/pkgs/cryptohash-md5.nix +++ b/pkgs/cryptohash-md5.nix @@ -18,7 +18,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cryptohash-sha1.nix b/pkgs/cryptohash-sha1.nix index 0c0b733a638872a5820d06f92bb9824510981978..e651b7c587bcd36bbf4b650635ca7a9522d750f3 100644 --- a/pkgs/cryptohash-sha1.nix +++ b/pkgs/cryptohash-sha1.nix @@ -18,7 +18,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cryptonite-conduit.nix b/pkgs/cryptonite-conduit.nix index c79458f7cbbdff59478d22743ead8491b854c50c..805abcbe759f8e0a7362bdab9a640f095178d0e7 100644 --- a/pkgs/cryptonite-conduit.nix +++ b/pkgs/cryptonite-conduit.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/css-text.nix b/pkgs/css-text.nix index 8ae586601cc0d6216cdf5e76626cfd7c81a605c5..8f20c36908c6eb7f2fb777693f9f828ed32ec2c3 100644 --- a/pkgs/css-text.nix +++ b/pkgs/css-text.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ attoparsec base hspec QuickCheck text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cubicbezier.nix b/pkgs/cubicbezier.nix index 163a9cd69fdd5fa74c5f6e5ec59dbe83f89e117d..a0fd8a5791acef450078586cd04ca9cee917ac45 100644 --- a/pkgs/cubicbezier.nix +++ b/pkgs/cubicbezier.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base parsec tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cursor-brick.nix b/pkgs/cursor-brick.nix index ba8f83c2b794ea17c12d9df15af32cda046e6597..38c275f05ee49326a6e1b29c6e61004c830c6c00 100644 --- a/pkgs/cursor-brick.nix +++ b/pkgs/cursor-brick.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base brick cursor text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cursor-dirforest-brick.nix b/pkgs/cursor-dirforest-brick.nix index fe4786150f8a4d2b2794129b47feafbc904bb519..8b172c914d8ba8a8a6b9c352c37a9f9e489bcae4 100644 --- a/pkgs/cursor-dirforest-brick.nix +++ b/pkgs/cursor-dirforest-brick.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cursor-dirforest-gen.nix b/pkgs/cursor-dirforest-gen.nix index fa9fe6b9166ec2fe6af8935ffa65d946a52f784f..4651de0874575e88cd563e783a4bceb758ff6331 100644 --- a/pkgs/cursor-dirforest-gen.nix +++ b/pkgs/cursor-dirforest-gen.nix @@ -31,7 +31,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cursor-dirforest.nix b/pkgs/cursor-dirforest.nix index a51c0ae1b3822aead57be9e60322fa148ae204e4..3c7b68e2dfe30308688ad0c61ff26a0bf9772ace 100644 --- a/pkgs/cursor-dirforest.nix +++ b/pkgs/cursor-dirforest.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cursor-fuzzy-time.nix b/pkgs/cursor-fuzzy-time.nix index bbfcd9b6bfe50eb833462fa43001afe84585427b..5c20f97b538b93ca7f307030e498f36a3c05fdc7 100644 --- a/pkgs/cursor-fuzzy-time.nix +++ b/pkgs/cursor-fuzzy-time.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cursor-gen.nix b/pkgs/cursor-gen.nix index a8a14c6fb89a520bd67fefbd3133c76f77b7f63e..09c630c3cdb6d15093a3070162dc21fd923c7410 100644 --- a/pkgs/cursor-gen.nix +++ b/pkgs/cursor-gen.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/cursor.nix b/pkgs/cursor.nix index 66de7c786e9d8447c4f0f076c9f076ba2e7da4b9..2da34e32cc92a7fd7ef228989f753be6d802fb33 100644 --- a/pkgs/cursor.nix +++ b/pkgs/cursor.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-binary-ieee754.nix b/pkgs/data-binary-ieee754.nix index 6b05d68932f8ea40ae95cd880d7cfc365b74f3da..e7f9832a84e994cb39cc6de78f8c9c377afd3313 100644 --- a/pkgs/data-binary-ieee754.nix +++ b/pkgs/data-binary-ieee754.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base binary ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-bword.nix b/pkgs/data-bword.nix index 7267c17a87435e9165c375c296e08db0855d6d2b..9ec411036c2d317d7f4e522e6e66d4a463189b45 100644 --- a/pkgs/data-bword.nix +++ b/pkgs/data-bword.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base tasty tasty-quickcheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-checked.nix b/pkgs/data-checked.nix index 0de820f709cb687d9945f99d42205b252515629d..76e637c11eb7dd9a9c2c4a54594bc44e2e3a6328 100644 --- a/pkgs/data-checked.nix +++ b/pkgs/data-checked.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base deepseq ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-dword.nix b/pkgs/data-dword.nix index 25b91f2d4b17ce98490df0d42d9bca16ff608711..7196393bafa027275e476f9f6a4564d95def7af4 100644 --- a/pkgs/data-dword.nix +++ b/pkgs/data-dword.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base tasty tasty-quickcheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-endian.nix b/pkgs/data-endian.nix index bdfa83c01dafe0aa05442ef08cab19434f937f1f..d5d46d1407256825b18a1abc8983af2b89c63332 100644 --- a/pkgs/data-endian.nix +++ b/pkgs/data-endian.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-ordlist.nix b/pkgs/data-ordlist.nix index b54f725043cc81505b048431957ad130f11750cd..7d95d52adff04caaaa41c971b10b6dcbb9a41380 100644 --- a/pkgs/data-ordlist.nix +++ b/pkgs/data-ordlist.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-serializer.nix b/pkgs/data-serializer.nix index 46bef05de8dfa374082360567d39a2fca8893be7..405cca3f27e71afba4db0eb70549d5c2fd644a7e 100644 --- a/pkgs/data-serializer.nix +++ b/pkgs/data-serializer.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-sketches-core.nix b/pkgs/data-sketches-core.nix index d1a1c9663ef7f377b4ab89f83877a9ac1a9585b4..4e3ed09f16d0468dfe867344e15a13384cd94ad2 100644 --- a/pkgs/data-sketches-core.nix +++ b/pkgs/data-sketches-core.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-sketches.nix b/pkgs/data-sketches.nix index 4447c7c5d946f9e4b74d332f97a55bd223e0147d..9235ac7e6faba8d8c2204a85ce18c11fd8014533 100644 --- a/pkgs/data-sketches.nix +++ b/pkgs/data-sketches.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/data-textual.nix b/pkgs/data-textual.nix index 5866aff4bd0e9f1baf013da76e412ace7f671e38..8d1578b60dacb8a4ad77ce1866afac28090bbca9 100644 --- a/pkgs/data-textual.nix +++ b/pkgs/data-textual.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dbus.nix b/pkgs/dbus.nix index 26224973624e62ea62d9e17495f5134547c2a745..22443b4fbae4a4a5ac5e8fd85dab40e3e31dc770 100644 --- a/pkgs/dbus.nix +++ b/pkgs/dbus.nix @@ -25,7 +25,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/deepseq-generics.nix b/pkgs/deepseq-generics.nix index 1bf8504033ce8643ff29f46529fc375756eee896..e842982c00c7feb641446f622c08748c5b2b3065 100644 --- a/pkgs/deepseq-generics.nix +++ b/pkgs/deepseq-generics.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/deferred-folds.nix b/pkgs/deferred-folds.nix index 01024f86cf3e529b525a056edc8acfe67d80a275..5356974f4dcc4e4519450fcf5716ff4ef520714e 100644 --- a/pkgs/deferred-folds.nix +++ b/pkgs/deferred-folds.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dense-linear-algebra.nix b/pkgs/dense-linear-algebra.nix index f7459184c240f3389b7c3f9461d556f8c69091ee..7d850e60d93f125885cb2c3d252bf2c923ffe2c9 100644 --- a/pkgs/dense-linear-algebra.nix +++ b/pkgs/dense-linear-algebra.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base hspec QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dependent-map.nix b/pkgs/dependent-map.nix index 8906e94a043f530b4fee16a69a2a49aee7c98364..4a1181a50c629e7c982ef85794cfb01db425fc05 100644 --- a/pkgs/dependent-map.nix +++ b/pkgs/dependent-map.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dependent-sum-template.nix b/pkgs/dependent-sum-template.nix index 7b5e4bd3fd2de51324d541cc3da10fa8e94e09c9..0d4ca03f37aa51829ccb2d893e0a4e6b4cc00366 100644 --- a/pkgs/dependent-sum-template.nix +++ b/pkgs/dependent-sum-template.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dependent-sum.nix b/pkgs/dependent-sum.nix index 5ada82b92adefe1976a560dd78d6c989343ab252..ae9577b4c38cc88846e6955fd0c5408f5a586dac 100644 --- a/pkgs/dependent-sum.nix +++ b/pkgs/dependent-sum.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base constraints-extras some ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/deque.nix b/pkgs/deque.nix index 3614c1433518addb250e4ed5cf2e2f6c025b54c6..2df729724d13431d87ae3766a85f92bd92414860 100644 --- a/pkgs/deque.nix +++ b/pkgs/deque.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/deriving-aeson.nix b/pkgs/deriving-aeson.nix index c50c47cdb04fba78a1ef9ae6ec5d43be01c7e9d7..c9c79cf75362d953955c2c91488cfde5d6fea138 100644 --- a/pkgs/deriving-aeson.nix +++ b/pkgs/deriving-aeson.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ aeson base bytestring ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/deriving-compat.nix b/pkgs/deriving-compat.nix index d7aa759902dee28b833ac70bf9bdabbda95888e6..73a36888e97358a2670a1bd4e0229c36c1cd267b 100644 --- a/pkgs/deriving-compat.nix +++ b/pkgs/deriving-compat.nix @@ -23,7 +23,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dhall-docs.nix b/pkgs/dhall-docs.nix index 0b5519faa86c787b4f04816a48514a0efc0f63ca..7fc096ca6a4810dcf7b3422210901b31c8e5c403 100644 --- a/pkgs/dhall-docs.nix +++ b/pkgs/dhall-docs.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dhall-json.nix b/pkgs/dhall-json.nix deleted file mode 100644 index 522c7a0051896ca382878fc40c4198f334500fef..0000000000000000000000000000000000000000 --- a/pkgs/dhall-json.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal -, base, bytestring, containers, dhall, exceptions, filepath -, lens-family-core, lib, optparse-applicative, prettyprinter -, prettyprinter-ansi-terminal, scientific, tasty, tasty-hunit -, tasty-silver, text, unordered-containers, vector -}: -mkDerivation { - pname = "dhall-json"; - version = "1.7.12"; - sha256 = "ca48cd434380cbd979dbb12889f90da8fdc1ea90bc266cab14f061c60e19d5fa"; - revision = "1"; - editedCabalFile = "0rf3zlr75x6g4hl1759j21fnnrp21shc7a35x7c73a0xyzpviqqi"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - aeson aeson-pretty aeson-yaml base bytestring containers dhall - exceptions filepath lens-family-core optparse-applicative - prettyprinter scientific text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring dhall exceptions - optparse-applicative prettyprinter prettyprinter-ansi-terminal text - ]; - testHaskellDepends = [ - aeson base bytestring dhall tasty tasty-hunit tasty-silver text - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - description = "Convert between Dhall and JSON or YAML"; - license = lib.licenses.bsd3; - broken = false; -} \ No newline at end of file diff --git a/pkgs/dhall-nixpkgs.nix b/pkgs/dhall-nixpkgs.nix deleted file mode 100644 index 36d067218f9cc391d92de302495cbb6e28a467e2..0000000000000000000000000000000000000000 --- a/pkgs/dhall-nixpkgs.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ mkDerivation, aeson, base, base16-bytestring, base64-bytestring -, bytestring, data-fix, dhall, foldl, hnix, lens-family-core, lib -, megaparsec, mmorph, neat-interpolation, network-uri -, optparse-applicative, prettyprinter, text, transformers, turtle -}: -mkDerivation { - pname = "dhall-nixpkgs"; - version = "1.0.10"; - sha256 = "a5d672ac4bb86e149c8f324fd4d99e65ce30dc742d3e3bfab86329acb5fbe126"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = false; - executableHaskellDepends = [ - aeson base base16-bytestring base64-bytestring bytestring data-fix - dhall foldl hnix lens-family-core megaparsec mmorph - neat-interpolation network-uri optparse-applicative prettyprinter - text transformers turtle - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - description = "Convert Dhall projects to Nix packages"; - license = lib.licenses.bsd3; - broken = false; -} \ No newline at end of file diff --git a/pkgs/diagrams-contrib.nix b/pkgs/diagrams-contrib.nix index 1362423b7966f48c0b2e8ba2a9a656a425554048..4ea09355ddbf587f444e4c50e9701af5185e0944 100644 --- a/pkgs/diagrams-contrib.nix +++ b/pkgs/diagrams-contrib.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/diagrams-core.nix b/pkgs/diagrams-core.nix index 850dc6dc2b26f58abd14dd792454d2f827b3735d..5f308ae70b8880f7620f9994f490fafd65f9a2bb 100644 --- a/pkgs/diagrams-core.nix +++ b/pkgs/diagrams-core.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/diagrams-lib.nix b/pkgs/diagrams-lib.nix index 6984cd34dc9bc4d40ca4bee40f45b40eb84bca8a..4f7d61c91082e9d81e5cadf37aaf01a5845f8b3a 100644 --- a/pkgs/diagrams-lib.nix +++ b/pkgs/diagrams-lib.nix @@ -31,7 +31,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion diagrams-core ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/diagrams-postscript.nix b/pkgs/diagrams-postscript.nix index 5886d5a7572ca5efb33cb35ba7fd992595b1b731..3ed0e6fee5ffffad6abd8ad977b51aff2406356a 100644 --- a/pkgs/diagrams-postscript.nix +++ b/pkgs/diagrams-postscript.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/diagrams-solve.nix b/pkgs/diagrams-solve.nix index a074d789f2afbf95901faba07759e065d20abd3f..42582c8c1148d90f8b1f13597b7208a022983a52 100644 --- a/pkgs/diagrams-solve.nix +++ b/pkgs/diagrams-solve.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/diagrams-svg.nix b/pkgs/diagrams-svg.nix index eda08570e98353833318f8aa2fc906674d2ebf3b..9031f7392b5337484ce6505c16b457e58b4a7ffe 100644 --- a/pkgs/diagrams-svg.nix +++ b/pkgs/diagrams-svg.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dictionary-sharing.nix b/pkgs/dictionary-sharing.nix index 0d4c1fac8b751bcb3ba6f4238be741d74475f39e..9cac7f65850695cc4a3f3d3130416cb787d7e033 100644 --- a/pkgs/dictionary-sharing.nix +++ b/pkgs/dictionary-sharing.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base containers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/digest.nix b/pkgs/digest.nix index 9fe7ecca7ce9e249b5c5cb77d9b1f7bf07070da8..e97bbc32c79fde06cccc407d44accf0f4efda169 100644 --- a/pkgs/digest.nix +++ b/pkgs/digest.nix @@ -12,7 +12,7 @@ mkDerivation { libraryPkgconfigDepends = [ zlib ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/digits.nix b/pkgs/digits.nix index 59d37544c6ebf0f9d5a1f9026efb534f14e65002..a581c2fd2fbea0894f39e3ba4ad1e6da9a31096d 100644 --- a/pkgs/digits.nix +++ b/pkgs/digits.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dimensional.nix b/pkgs/dimensional.nix index 13e34e8d71db1b1967bca3414ca2c081df79abab..59b370bf1ca8a8f62305cb69c68f72e6a82da460 100644 --- a/pkgs/dimensional.nix +++ b/pkgs/dimensional.nix @@ -19,7 +19,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion deepseq ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/direct-sqlite.nix b/pkgs/direct-sqlite.nix index 3236458545d9323a1853e9a0ca90901d772977ce..006b8925f5e5c54a70888f58e6f47be86817bb0a 100644 --- a/pkgs/direct-sqlite.nix +++ b/pkgs/direct-sqlite.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dirforest.nix b/pkgs/dirforest.nix index 3f3e69313985a056bca251f9049cae10d0c4cd5f..0c19562c674c25fd51a5ff1d841fbde1d681ab3e 100644 --- a/pkgs/dirforest.nix +++ b/pkgs/dirforest.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/doclayout.nix b/pkgs/doclayout.nix index ba0144d00eefb9fe785e82cbfbc4d0ae3ad2506c..eff2ce00665284fa3ee4832f0fa2d7da70298d30 100644 --- a/pkgs/doclayout.nix +++ b/pkgs/doclayout.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/doctemplates.nix b/pkgs/doctemplates.nix index f1e93894a4e18beee6d74de7494cffaacd365d92..1d4fa8eff7a6ed31655303217aca71b22866507e 100644 --- a/pkgs/doctemplates.nix +++ b/pkgs/doctemplates.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/doctest.nix b/pkgs/doctest.nix index 35d4e8a7125bf61e9ea19b87fe85159b87f007c7..e110551b397a787a5c9845edffc2de40cd67a7ae 100644 --- a/pkgs/doctest.nix +++ b/pkgs/doctest.nix @@ -26,7 +26,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dom-lt.nix b/pkgs/dom-lt.nix index f7431ba57676eaeb4ace5536470de6ad957bd519..ac4bb30c4932562e35ed091af5c3450926f4b3a1 100644 --- a/pkgs/dom-lt.nix +++ b/pkgs/dom-lt.nix @@ -13,7 +13,7 @@ mkDerivation { benchmarkHaskellDepends = [ base containers criterion deepseq ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/double-conversion.nix b/pkgs/double-conversion.nix index 97f8d150e71610c248680fce43e09dbb3f72d764..b7eddb5b9ad0110ee7656f9787ff9437b6549946 100644 --- a/pkgs/double-conversion.nix +++ b/pkgs/double-conversion.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/dual-tree.nix b/pkgs/dual-tree.nix index 85502d5470abeb174f25a819a624b34e4bd48f43..c8fca41cdf6f537762f54d81036dd34fff96cc01 100644 --- a/pkgs/dual-tree.nix +++ b/pkgs/dual-tree.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/echo.nix b/pkgs/echo.nix index 7fc63601521c790092d7803f9dd5ff4ac43325a4..95d8131a625442849ed64685445913757700a0e4 100644 --- a/pkgs/echo.nix +++ b/pkgs/echo.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base process ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ed25519.nix b/pkgs/ed25519.nix index 9b11d0089667c9bbb00760779339047899093426..413c2db91ec751dfb66d3db70c49b719b99f0183 100644 --- a/pkgs/ed25519.nix +++ b/pkgs/ed25519.nix @@ -20,7 +20,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring criterion deepseq ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/edit-distance.nix b/pkgs/edit-distance.nix index 8f632d67a118793f621e86cbfae73ffd235c169d..68e14bedf18dd6c91a63c478591903b973dc9d4e 100644 --- a/pkgs/edit-distance.nix +++ b/pkgs/edit-distance.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/effectful-cache.nix b/pkgs/effectful-cache.nix index d6cc79765d9ef124297baa8544581641e0ba1911..37db92100bb70e89fe9db327dcd12c7dde8575ed 100644 --- a/pkgs/effectful-cache.nix +++ b/pkgs/effectful-cache.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/effectful-core.nix b/pkgs/effectful-core.nix index e86d866f30f08da5d7281ae06b4a0e932c60321b..35e4dcb54f0633aa9b0c72545a28b1ba6578b48e 100644 --- a/pkgs/effectful-core.nix +++ b/pkgs/effectful-core.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/effectful-th.nix b/pkgs/effectful-th.nix index a28988ee0e8cc838ca077446fec60fbb0d16d6f9..520dab07e58918993f3fd24a28fb73a07b081ffb 100644 --- a/pkgs/effectful-th.nix +++ b/pkgs/effectful-th.nix @@ -17,7 +17,7 @@ mkDerivation { testHaskellDepends = [ base effectful-core ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/effectful.nix b/pkgs/effectful.nix index 38cd99dbf6c7fd6f38e79cf6cf7bc574e3dec595..c475220a6e6db369c2871edd9460d065ef108b33 100644 --- a/pkgs/effectful.nix +++ b/pkgs/effectful.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ekg-core.nix b/pkgs/ekg-core.nix index a04f2f7abcea9cfa21ac1eacf42cbb5697dbe357..7c72f4ce483c5f046af779f578c51b0c2f01342c 100644 --- a/pkgs/ekg-core.nix +++ b/pkgs/ekg-core.nix @@ -16,7 +16,7 @@ mkDerivation { benchmarkHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ekg-json.nix b/pkgs/ekg-json.nix index e7633f8077142311fdf8fef346a51b3cb3ab214e..79e3d6c907b9efa07fe0eb44778fa5d50f01c64f 100644 --- a/pkgs/ekg-json.nix +++ b/pkgs/ekg-json.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ekg-statsd.nix b/pkgs/ekg-statsd.nix index 35a0675c3c3973af5cf79a47bb9a27ad2fa384d0..d005fb45576011024e3c264dddbaee64de382a1d 100644 --- a/pkgs/ekg-statsd.nix +++ b/pkgs/ekg-statsd.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ekg-wai.nix b/pkgs/ekg-wai.nix index 30c8068ec8dbc7fe5b14e29753fe7ed91aecb639..b13fdf5363e137d868032eee126eb0bf7367f9b9 100644 --- a/pkgs/ekg-wai.nix +++ b/pkgs/ekg-wai.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ekg.nix b/pkgs/ekg.nix index 30fdb9327457bd02e705d0644c2b897d34e44d1f..a9714ff6c6e7f354afca30830ba27a06bd5cccf1 100644 --- a/pkgs/ekg.nix +++ b/pkgs/ekg.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ema.nix b/pkgs/ema.nix deleted file mode 100644 index 989efe88cbcae2f6d8f4eb412637c089a2d140ac..0000000000000000000000000000000000000000 --- a/pkgs/ema.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ mkDerivation, aeson, async, base, constraints-extras -, data-default, dependent-sum, dependent-sum-template, directory -, file-embed, filepath, filepattern, http-types, lib, lvar -, monad-logger, monad-logger-extras, mtl, neat-interpolation -, optics-core, optparse-applicative, relude, sop-core, text -, unliftio, url-slug, wai, wai-middleware-static, wai-websockets -, warp, websockets -}: -mkDerivation { - pname = "ema"; - version = "0.10.2.0"; - sha256 = "106f148c767d3c8ea07b2b24a1dab009c95020f071cb046e8eaaf3dab56cf9a4"; - isLibrary = true; - isExecutable = false; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson async base constraints-extras data-default dependent-sum - dependent-sum-template directory file-embed filepath filepattern - http-types lvar monad-logger monad-logger-extras mtl - neat-interpolation optics-core optparse-applicative relude sop-core - text unliftio url-slug wai wai-middleware-static wai-websockets - warp websockets - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://ema.srid.ca/"; - description = "Static site generator library with hot reload"; - license = lib.licenses.agpl3Only; - broken = false; -} \ No newline at end of file diff --git a/pkgs/email-validate.nix b/pkgs/email-validate.nix index d1a7bebd01bd35b8e43ef179f26510b224142ce8..8b1a0a1e4df5e1deaedb332554ebe56e66bad12c 100644 --- a/pkgs/email-validate.nix +++ b/pkgs/email-validate.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base bytestring hspec QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/emojis.nix b/pkgs/emojis.nix index 1778c990bfd2eae4d7348997afa228c5f943f620..88578477af0d64c3384725a9adf23de00a733e4e 100644 --- a/pkgs/emojis.nix +++ b/pkgs/emojis.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base HUnit text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/enclosed-exceptions.nix b/pkgs/enclosed-exceptions.nix index b29cf2514f38b32802cfdb824e10174b630cc676..abb47c819c0bbf0039701d9f60d88b22e5d3431f 100644 --- a/pkgs/enclosed-exceptions.nix +++ b/pkgs/enclosed-exceptions.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/enummapset.nix b/pkgs/enummapset.nix index 0d6b72c5dd382705edb6e94c78a6aa3ed87451c8..7a0d52baf8678ad021be189abda1cef64a094908 100644 --- a/pkgs/enummapset.nix +++ b/pkgs/enummapset.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/errors.nix b/pkgs/errors.nix index 034df6510490abdaa1165ed3b8f1d1cceed7aa6b..1c830db6aa37fb230aaa8e84cfb1951de38782ae 100644 --- a/pkgs/errors.nix +++ b/pkgs/errors.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/exact-combinatorics.nix b/pkgs/exact-combinatorics.nix index 699a58a4ce5a640ec27ffc819449016ff12b8460..ef3e868e122766f737ffc30847492b3abb3e718f 100644 --- a/pkgs/exact-combinatorics.nix +++ b/pkgs/exact-combinatorics.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/exact-pi.nix b/pkgs/exact-pi.nix index 8c093d93cfb9b6b48811e8cf8c764351adce364e..69680172171910c3832014d5e47abac2f8258fc0 100644 --- a/pkgs/exact-pi.nix +++ b/pkgs/exact-pi.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/expiring-cache-map.nix b/pkgs/expiring-cache-map.nix index cd47630753a4848ddcc6241f184e6e5095d9b4e7..f97e9761f38888c83b35a3cf102181f749bc2848 100644 --- a/pkgs/expiring-cache-map.nix +++ b/pkgs/expiring-cache-map.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/extended-reals.nix b/pkgs/extended-reals.nix index 85968c90c5e56af22b59eaaa9990abffa205a81c..a7cbfadaf1ab8bb34af47a30d513c60e90210e98 100644 --- a/pkgs/extended-reals.nix +++ b/pkgs/extended-reals.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/extensible-effects.nix b/pkgs/extensible-effects.nix index 1fe24630406f08b95096f927f9424e1ec05b9dd3..f0ce324650fda269a702806b871676f6fd80a2a1 100644 --- a/pkgs/extensible-effects.nix +++ b/pkgs/extensible-effects.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fast-math.nix b/pkgs/fast-math.nix index 7df10fc9068924656d9869e501e9271ec6addfb6..ba78df582afcc34f9c71608420731e89915817f9 100644 --- a/pkgs/fast-math.nix +++ b/pkgs/fast-math.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fcf-containers.nix b/pkgs/fcf-containers.nix index f2f70f8454309a202bb4d19c9b5bf01f0d88aa16..00b3d942177c7635d184ee411410962414f453f9 100644 --- a/pkgs/fcf-containers.nix +++ b/pkgs/fcf-containers.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/feedback.nix b/pkgs/feedback.nix deleted file mode 100644 index b04464a390c5c0825ebcd92c18bc1444fd457d0e..0000000000000000000000000000000000000000 --- a/pkgs/feedback.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ mkDerivation, autodocodec, autodocodec-yaml, base, bytestring -, conduit, containers, envparse, fsnotify, lib -, optparse-applicative, path, path-io, pretty-show -, safe-coloured-text, safe-coloured-text-layout -, safe-coloured-text-terminfo, text, time, typed-process, unix -, unliftio, yaml -}: -mkDerivation { - pname = "feedback"; - version = "0.1.0.1"; - sha256 = "5ec853dfd1f314aaa08f247058dc54783ceb3a8717b0ef5e3d787cee802523a1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - autodocodec autodocodec-yaml base bytestring conduit containers - envparse fsnotify optparse-applicative path path-io pretty-show - safe-coloured-text safe-coloured-text-layout - safe-coloured-text-terminfo text time typed-process unix unliftio - yaml - ]; - executableHaskellDepends = [ base ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/NorfairKing/feedback#readme"; - description = "Declarative feedback loop manager"; - license = lib.licenses.gpl3Only; - broken = false; -} \ No newline at end of file diff --git a/pkgs/file-embed.nix b/pkgs/file-embed.nix index 2735548843c21d6ef5272a561dfea647e530738a..c5717eecce57252492447e8f88ebbafa002731c3 100644 --- a/pkgs/file-embed.nix +++ b/pkgs/file-embed.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base bytestring filepath ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/filelock.nix b/pkgs/filelock.nix index 8731bbef0daa59a24167d681eb02bd5323ee3fb1..c810cac346dcc711d285e69fdf819de54c38f397 100644 --- a/pkgs/filelock.nix +++ b/pkgs/filelock.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ async base process ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/filemanip.nix b/pkgs/filemanip.nix index e596fa39d01333f3d46bd2de8c8e23811aff5be2..aa7e2b56f92aa2561fcd586536d070f0d953b3ee 100644 --- a/pkgs/filemanip.nix +++ b/pkgs/filemanip.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/filepattern.nix b/pkgs/filepattern.nix index d94cf5fc89c63a05e18fb42b719569241b3445fb..61f902ac27ae78f24e3cae1ef99231dc52badf8b 100644 --- a/pkgs/filepattern.nix +++ b/pkgs/filepattern.nix @@ -11,7 +11,7 @@ mkDerivation { testHaskellDepends = [ base directory extra filepath QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/filtrable.nix b/pkgs/filtrable.nix index 68a4de5b8e2645fdb500fb1b6f801055ead8eed2..5909d4ddfc7071f8d1d393cd5df9f442d2237450 100644 --- a/pkgs/filtrable.nix +++ b/pkgs/filtrable.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/finite-field.nix b/pkgs/finite-field.nix index 1f356f3e82b53a03215deb0dd853f489127ba2d4..eca7eb327c9c5eb563202147bc8c44b15fba8c18 100644 --- a/pkgs/finite-field.nix +++ b/pkgs/finite-field.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/finite-typelits.nix b/pkgs/finite-typelits.nix index d4cea54e613fe3d8a95f8851e19c6b6a010a9fca..0ce7a8790123274fcae5032a88cb2781ba4e5df8 100644 --- a/pkgs/finite-typelits.nix +++ b/pkgs/finite-typelits.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base deepseq QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fixed.nix b/pkgs/fixed.nix index ffe054fe347496c9c2af5e677dbfb5750252b78f..59235d16a7fd09af2e2b4f9b8d4202fba3a50ca3 100644 --- a/pkgs/fixed.nix +++ b/pkgs/fixed.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/floatshow.nix b/pkgs/floatshow.nix index 7af06beb103181db918718c01b94b52f49381bc8..c1569c45f89e93a53a107f4f4ac6adb42198858b 100644 --- a/pkgs/floatshow.nix +++ b/pkgs/floatshow.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ array base integer-gmp ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fmt.nix b/pkgs/fmt.nix index 574a71f1129ebb0c5b267232a8f786ed29b9ff2e..67eee3c9f392706c85870b754d54c7cf0a095450 100644 --- a/pkgs/fmt.nix +++ b/pkgs/fmt.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/focus.nix b/pkgs/focus.nix index 75129a31fb7715b1f15119500b9c4dc4f884bbea..6543ef5dc3eb65b5b8cff11650096d231f905b85 100644 --- a/pkgs/focus.nix +++ b/pkgs/focus.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ rerebase tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/force-layout.nix b/pkgs/force-layout.nix index 2891b1e88bf5c119d98e3a3feda2eef5aefe6671..c92ab10469dabb0ec5fce4e576ea6be5cccced6c 100644 --- a/pkgs/force-layout.nix +++ b/pkgs/force-layout.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/foreign-store.nix b/pkgs/foreign-store.nix index 3df6e50e0b4d0602a5e836663f9822246675d788..1b76dc2ec8116568861c728999617af6d103647d 100644 --- a/pkgs/foreign-store.nix +++ b/pkgs/foreign-store.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/formatting.nix b/pkgs/formatting.nix index 70ce6d9b03b6b668722d82008554226ac476cf6a..1cbf200891792da86fea917ead9edd2dc6781c44 100644 --- a/pkgs/formatting.nix +++ b/pkgs/formatting.nix @@ -17,7 +17,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion QuickCheck text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/foundation.nix b/pkgs/foundation.nix index 1023c5d91408ab7645be9d7c7f08f0cc0fc8d798..8ca1f4b793fb96b07c5540d9791bffc8065f4182 100644 --- a/pkgs/foundation.nix +++ b/pkgs/foundation.nix @@ -17,7 +17,7 @@ mkDerivation { benchmarkHaskellDepends = [ base basement gauge ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fourmolu.nix b/pkgs/fourmolu.nix index dfc53aa61d4521045db334888fef7353a697c600..4966fdb4dc2dad63a00976f6c697ebbb87f78e47 100644 --- a/pkgs/fourmolu.nix +++ b/pkgs/fourmolu.nix @@ -29,7 +29,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/freer-simple.nix b/pkgs/freer-simple.nix index 9f8c27f1b72b77d2f15074dd004bfc45ab6d6aff..b6f004c291e6c6be8b154aafe7e3c70f52e65c90 100644 --- a/pkgs/freer-simple.nix +++ b/pkgs/freer-simple.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/friendly-time.nix b/pkgs/friendly-time.nix index 138ff804bab3761d5506b5f1c96fbffba5ac792d..89629f1b337279748837dac78b63ccf623e7a7fa 100644 --- a/pkgs/friendly-time.nix +++ b/pkgs/friendly-time.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base hspec old-locale time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fsnotify.nix b/pkgs/fsnotify.nix index e9c43d5c86c46860f50e94ace6f7eec94142deab..f163cbd851d86a4c1fe95befeb7176be434ff77d 100644 --- a/pkgs/fsnotify.nix +++ b/pkgs/fsnotify.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fusion-plugin-types.nix b/pkgs/fusion-plugin-types.nix index cb1e059a984893defcd5e67a82ff9784bb787a6c..05689b4a687c19ed2f3edb40568e48c7cd39f36e 100644 --- a/pkgs/fusion-plugin-types.nix +++ b/pkgs/fusion-plugin-types.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fuzzy-time-gen.nix b/pkgs/fuzzy-time-gen.nix index d8e9f854916ebff22fba53729759699ce2a2cba6..4bdb9c8a1b0bdd529168d1bc1e4ea4e0a501f0d8 100644 --- a/pkgs/fuzzy-time-gen.nix +++ b/pkgs/fuzzy-time-gen.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fuzzy-time.nix b/pkgs/fuzzy-time.nix index b35a778cef87e1c88549287b3898a21795211bbb..1a87728b1774e56e9ab8fb3054cc88a2703901cf 100644 --- a/pkgs/fuzzy-time.nix +++ b/pkgs/fuzzy-time.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/fuzzy.nix b/pkgs/fuzzy.nix index ccbfdb462babc9b9f7f560025073025c397041fc..f5e2c030dbbb703b4c473a4e400efa789cac204e 100644 --- a/pkgs/fuzzy.nix +++ b/pkgs/fuzzy.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base HUnit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generic-arbitrary.nix b/pkgs/generic-arbitrary.nix index 548b775b9af77c56dd3591bcae5a0b321e343e99..1b864f914b73dc17cdedc18fb2a522ecfe5f3a35 100644 --- a/pkgs/generic-arbitrary.nix +++ b/pkgs/generic-arbitrary.nix @@ -16,7 +16,7 @@ mkDerivation { testToolDepends = [ tasty-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generic-data.nix b/pkgs/generic-data.nix index 7b49274f2efa2e38e85da928486e2c3f7d7d58ee..373b818b312baf8b8e69f0bb8b0dc9b76b396778 100644 --- a/pkgs/generic-data.nix +++ b/pkgs/generic-data.nix @@ -21,7 +21,7 @@ mkDerivation { benchmarkHaskellDepends = [ base deepseq tasty-bench ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generic-lens-core.nix b/pkgs/generic-lens-core.nix index 74e00690d553a55e899d2f00a76772760d260102..ef8e53da4ba5b05552b3ed98d915f06bbb0a4631 100644 --- a/pkgs/generic-lens-core.nix +++ b/pkgs/generic-lens-core.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base indexed-profunctors text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generic-lens-lite.nix b/pkgs/generic-lens-lite.nix index 12c8211b5aa36546b127e4d8be16938490199830..7699ce313b6ef11e8be1f67dab2ed9c153fcd7bc 100644 --- a/pkgs/generic-lens-lite.nix +++ b/pkgs/generic-lens-lite.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generic-lens.nix b/pkgs/generic-lens.nix index 5caa03c5fd147475d743ebfa6fce56a1a95951ae..6d91df833b4a5f2345e0b46d0c7992c7b8598ef8 100644 --- a/pkgs/generic-lens.nix +++ b/pkgs/generic-lens.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generic-monoid.nix b/pkgs/generic-monoid.nix index f3bb2974ab9712589a773724be735658e9337d7b..7a226729bb8709c7ab1a5739a85bc11b3b77fa09 100644 --- a/pkgs/generic-monoid.nix +++ b/pkgs/generic-monoid.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generic-optics-lite.nix b/pkgs/generic-optics-lite.nix index ac7b1cccc09d4c7e5b9aac3ee0ad406733bccb41..db0b10884584024e38763a09cb7e20d06fa6b905 100644 --- a/pkgs/generic-optics-lite.nix +++ b/pkgs/generic-optics-lite.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base optics-core ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generic-optics.nix b/pkgs/generic-optics.nix index d02198bbcc392cbdfdfe5bec11f35db156e255ab..12397f853a94ba823e51a2730c844f4797a6a23d 100644 --- a/pkgs/generic-optics.nix +++ b/pkgs/generic-optics.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/generics-sop.nix b/pkgs/generics-sop.nix index 14b4dd16464007db64701e93fd5d6eeb67a992c8..b3ba7f1d23cf4468d193dff4e9244f1fe5ec032f 100644 --- a/pkgs/generics-sop.nix +++ b/pkgs/generics-sop.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-aeson.nix b/pkgs/genvalidity-aeson.nix index 45086594f56aa0f07311f8153f0048e6ba2e9abe..4de3a0bf56fd3c196deed82d822855f8163c220a 100644 --- a/pkgs/genvalidity-aeson.nix +++ b/pkgs/genvalidity-aeson.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-bytestring.nix b/pkgs/genvalidity-bytestring.nix index e1eb4e7092cc769f14565f27ade8da58dc4618d0..5a776272d2bf0b4dc7493974ee4bfd576786f161 100644 --- a/pkgs/genvalidity-bytestring.nix +++ b/pkgs/genvalidity-bytestring.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-case-insensitive.nix b/pkgs/genvalidity-case-insensitive.nix index a1df639017a0aaef0fa90d2bcba29e29069cfe51..90812e9e6a8adaf608904e05febbea32049b4929 100644 --- a/pkgs/genvalidity-case-insensitive.nix +++ b/pkgs/genvalidity-case-insensitive.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-containers.nix b/pkgs/genvalidity-containers.nix index 639b9a134e2baa730a34e4ac14b4b521c1024e9b..135468fb6f513e227e20f3d16efdad7e7ecb45d1 100644 --- a/pkgs/genvalidity-containers.nix +++ b/pkgs/genvalidity-containers.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-criterion.nix b/pkgs/genvalidity-criterion.nix index 94e0953ac63e95b2ee2f3985db32c170cc4376eb..30d8f7980a442c594d60f2b415273f7a860e9d84 100644 --- a/pkgs/genvalidity-criterion.nix +++ b/pkgs/genvalidity-criterion.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-dirforest.nix b/pkgs/genvalidity-dirforest.nix index 4bad6557a11a5c5bb406b2937aeb78d039bfbb30..955ac5c076adff9636b9a5034d8948723ffdbacd 100644 --- a/pkgs/genvalidity-dirforest.nix +++ b/pkgs/genvalidity-dirforest.nix @@ -33,7 +33,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-hspec-aeson.nix b/pkgs/genvalidity-hspec-aeson.nix index eb2149e1b93afb7db722036537f0006d49f0be59..a7b06aa7ca87087fdf3bcb0598e03be48c225c40 100644 --- a/pkgs/genvalidity-hspec-aeson.nix +++ b/pkgs/genvalidity-hspec-aeson.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-hspec-optics.nix b/pkgs/genvalidity-hspec-optics.nix index a3fe8ad87a19b71bd4312311c352d08e01489f75..9b60cbad96fe2752979c73fe7e272b82d33976b1 100644 --- a/pkgs/genvalidity-hspec-optics.nix +++ b/pkgs/genvalidity-hspec-optics.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-path.nix b/pkgs/genvalidity-path.nix index 380e729dd117522e92a740df435543136ef1d6d1..483ff1f58cb074bc62464063d70637477e8640d6 100644 --- a/pkgs/genvalidity-path.nix +++ b/pkgs/genvalidity-path.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-persistent.nix b/pkgs/genvalidity-persistent.nix index b6d7c02df166e001b73d438d6d32cbb22e5c1caf..81e4ae1330613715bd86990a391eacfb536d3d01 100644 --- a/pkgs/genvalidity-persistent.nix +++ b/pkgs/genvalidity-persistent.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-scientific.nix b/pkgs/genvalidity-scientific.nix index 5fa54da3cade5e4fe16d25c3744625841184165f..27aca6efe5e06ad2c7e99dc6c41a2052ec9d9fc0 100644 --- a/pkgs/genvalidity-scientific.nix +++ b/pkgs/genvalidity-scientific.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-sydtest-aeson.nix b/pkgs/genvalidity-sydtest-aeson.nix index 604e95b20ea98a36582d7e2f6b0990286b91332e..5d7aa2ee33dd16cda7167c4ffe065b6907fb612b 100644 --- a/pkgs/genvalidity-sydtest-aeson.nix +++ b/pkgs/genvalidity-sydtest-aeson.nix @@ -20,7 +20,7 @@ mkDerivation { testToolDepends = [ sydtest-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-sydtest-hashable.nix b/pkgs/genvalidity-sydtest-hashable.nix index 228dfe87344c6cc699f92f94492cf410cae018f4..b7b1db4716e489c17b97407418c46f6a1bfc99e6 100644 --- a/pkgs/genvalidity-sydtest-hashable.nix +++ b/pkgs/genvalidity-sydtest-hashable.nix @@ -19,7 +19,7 @@ mkDerivation { testToolDepends = [ sydtest-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-sydtest-lens.nix b/pkgs/genvalidity-sydtest-lens.nix index ea4fba5df9f48bed048ac5851d32cb78e3c91568..6c79a4ca84d88f0186305c130aa468b08a7748a6 100644 --- a/pkgs/genvalidity-sydtest-lens.nix +++ b/pkgs/genvalidity-sydtest-lens.nix @@ -17,7 +17,7 @@ mkDerivation { testToolDepends = [ sydtest-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-sydtest-persistent.nix b/pkgs/genvalidity-sydtest-persistent.nix index 429b55ea382ba797542974baef7310cf8e3b3d4e..08a3386eedd5e367cb41f7a1b49e96ced589d051 100644 --- a/pkgs/genvalidity-sydtest-persistent.nix +++ b/pkgs/genvalidity-sydtest-persistent.nix @@ -20,7 +20,7 @@ mkDerivation { testToolDepends = [ sydtest-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-sydtest.nix b/pkgs/genvalidity-sydtest.nix index 17c342bf93d4d9ba874b257dcb4ace14e31df6cf..25bbd9ed7fcb737c42b7f41078a78776307553db 100644 --- a/pkgs/genvalidity-sydtest.nix +++ b/pkgs/genvalidity-sydtest.nix @@ -15,7 +15,7 @@ mkDerivation { testToolDepends = [ sydtest-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-text.nix b/pkgs/genvalidity-text.nix index 647fa34df1c6bd57732421ee8f873af2c8f12a9d..a014ebed468fe7ab7262ba1c410109157ab3140d 100644 --- a/pkgs/genvalidity-text.nix +++ b/pkgs/genvalidity-text.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-time.nix b/pkgs/genvalidity-time.nix index 5a0e4d5fd653d59ebf71ed196b4b224ec324e1e3..b2d5286b6dc1dc61acf6afdf96be8fda48052ebe 100644 --- a/pkgs/genvalidity-time.nix +++ b/pkgs/genvalidity-time.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-unordered-containers.nix b/pkgs/genvalidity-unordered-containers.nix index 26474b57c849e8bd48b18cc8894fa65a1c432839..0050e62a257cda2da67f57c5ed948c4411729bab 100644 --- a/pkgs/genvalidity-unordered-containers.nix +++ b/pkgs/genvalidity-unordered-containers.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-uuid.nix b/pkgs/genvalidity-uuid.nix index a2b362b979d6c8c49a52c512cbee02ee1da272f9..a4965a49c594d5114153b0a4598dfeece40a226a 100644 --- a/pkgs/genvalidity-uuid.nix +++ b/pkgs/genvalidity-uuid.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/genvalidity-vector.nix b/pkgs/genvalidity-vector.nix index 9ab30cab15b02baa709114f6696edd766b60a70d..614d9070cac743779339eced14456532f1b40011 100644 --- a/pkgs/genvalidity-vector.nix +++ b/pkgs/genvalidity-vector.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghc-check.nix b/pkgs/ghc-check.nix index 22a8c0f585982eb591d47dbe0624d603052d6597..2b668f789612e500d809cfb41ed0901474dd2ee7 100644 --- a/pkgs/ghc-check.nix +++ b/pkgs/ghc-check.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghc-exactprint.nix b/pkgs/ghc-exactprint.nix index 3366033948d11fc38815d763d6ebd3a60060fced..fc61a976fd42fc3c3fa744709ceb1ebfff931f25 100644 --- a/pkgs/ghc-exactprint.nix +++ b/pkgs/ghc-exactprint.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghc-lib-parser-ex.nix b/pkgs/ghc-lib-parser-ex.nix index f446211f2d957ca58dec0db7c9fd20a68d5cb8a0..b5038e285b0afd4b218ee27e0cab2c4f010b8fc3 100644 --- a/pkgs/ghc-lib-parser-ex.nix +++ b/pkgs/ghc-lib-parser-ex.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghc-lib-parser.nix b/pkgs/ghc-lib-parser.nix index 0b5687d4dad9d87026a0b080a43b6133631168bd..c4848940cdbda1290ce6cac6532d92bcd02f373f 100644 --- a/pkgs/ghc-lib-parser.nix +++ b/pkgs/ghc-lib-parser.nix @@ -17,7 +17,7 @@ mkDerivation { libraryToolDepends = [ alex happy ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghc-tcplugins-extra.nix b/pkgs/ghc-tcplugins-extra.nix index 46df968352eaee838ee8de3b3c5a0dc8d9623605..7e3559d0493cb2dca9f6a225c5e2b2d795fc2de4 100644 --- a/pkgs/ghc-tcplugins-extra.nix +++ b/pkgs/ghc-tcplugins-extra.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ghc ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghc-trace-events.nix b/pkgs/ghc-trace-events.nix index a088398bc8d3875edba25c34ee2fe7dba14b3fa5..e108ad7db1cd942e2daf341fbc867390a5c1ff4a 100644 --- a/pkgs/ghc-trace-events.nix +++ b/pkgs/ghc-trace-events.nix @@ -10,7 +10,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring tasty-bench ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghc-typelits-knownnat.nix b/pkgs/ghc-typelits-knownnat.nix index b4560ec8e3570777969ce8e032eea4c24bad1aa5..371a4971c7f4217e6e075e07f06f5afef2c42ffa 100644 --- a/pkgs/ghc-typelits-knownnat.nix +++ b/pkgs/ghc-typelits-knownnat.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghc-typelits-natnormalise.nix b/pkgs/ghc-typelits-natnormalise.nix index d9599215368c48f484416387c6130597cc66c801..f730e91b3a4982699b5eea7ed555b9549059bc68 100644 --- a/pkgs/ghc-typelits-natnormalise.nix +++ b/pkgs/ghc-typelits-natnormalise.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghcid.nix b/pkgs/ghcid.nix index 90650430278dcfb562b3c16daa1ab19fa92d3333..dba1b8e8e85fd12430768359b631d7b76895b9da 100644 --- a/pkgs/ghcid.nix +++ b/pkgs/ghcid.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghcide-bench.nix b/pkgs/ghcide-bench.nix index f061617a4cd1ba6744f9312809eb75f246622c7c..4e8a79a3ebbe22b157df2f1492d7df2e16a1621c 100644 --- a/pkgs/ghcide-bench.nix +++ b/pkgs/ghcide-bench.nix @@ -29,7 +29,7 @@ mkDerivation { testToolDepends = [ ghcide implicit-hie ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghcide-test-utils.nix b/pkgs/ghcide-test-utils.nix index 1426b0c66a4e5e4a5f3f291996d3d5787eae40e7..33dcb9e8964944c68f1511d2df0eca8cd78ceaeb 100644 --- a/pkgs/ghcide-test-utils.nix +++ b/pkgs/ghcide-test-utils.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ghcide.nix b/pkgs/ghcide.nix index 273d52b21f610a07ec638583c24c7394c7bf779a..6fe1312709c00ad8eb757658c2804c581305e95b 100644 --- a/pkgs/ghcide.nix +++ b/pkgs/ghcide.nix @@ -51,7 +51,7 @@ mkDerivation { testToolDepends = [ implicit-hie ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/githash.nix b/pkgs/githash.nix index 387aa95a6f05d679cd213fbad495b6828d144a64..4404fb4b40136383016423a165e98dccba02e62e 100644 --- a/pkgs/githash.nix +++ b/pkgs/githash.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/gitrev.nix b/pkgs/gitrev.nix index 772d476249eb2e51ac4d08995cbdf1542b5b4666..dd45fc5dcf413d082cce6b660f999939f52c6874 100644 --- a/pkgs/gitrev.nix +++ b/pkgs/gitrev.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/gridtables.nix b/pkgs/gridtables.nix index 0785f49804c0ed6b16d2e5f18d1620ff1134c9a9..a077a113cbe3fd01897558db9b74f00a54ae9459 100644 --- a/pkgs/gridtables.nix +++ b/pkgs/gridtables.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ array base parsec tasty tasty-hunit text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/groups.nix b/pkgs/groups.nix index 495a97857e5f0dfc8a6e1668ffd9a7435a20e2a6..de6fdec02e8dfbd6d2d8c58e29bf035acf57f839 100644 --- a/pkgs/groups.nix +++ b/pkgs/groups.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/gtk2hs-buildtools.nix b/pkgs/gtk2hs-buildtools.nix index f63f765285e42cb5f9ac7636b3c54556ecc1647f..d8f7c121e3566a59aa7a4c1a54544e3f9d763234 100644 --- a/pkgs/gtk2hs-buildtools.nix +++ b/pkgs/gtk2hs-buildtools.nix @@ -16,7 +16,7 @@ mkDerivation { executableHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hackage-security.nix b/pkgs/hackage-security.nix index 543bdb94935acf3354be502b0d9b2d8644383998..6d19e075d8c0782d7571c0f145c58baf8dec22de 100644 --- a/pkgs/hackage-security.nix +++ b/pkgs/hackage-security.nix @@ -27,7 +27,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/haddock-library.nix b/pkgs/haddock-library.nix index 6880316d63fda7914411a0b8dfe712a10aeef9d0..6f3502a59f6f05b90394bc3f4dc1c2e0ef5989fe 100644 --- a/pkgs/haddock-library.nix +++ b/pkgs/haddock-library.nix @@ -19,7 +19,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hashing.nix b/pkgs/hashing.nix index 605b1a9d2d9a8849cbca81950dcc299d6acddbb1..a92ace7aab9183e2f033fabf18a5bb84d7d0091b 100644 --- a/pkgs/hashing.nix +++ b/pkgs/hashing.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hashtables.nix b/pkgs/hashtables.nix index c81d10c8e3f1a46587a1a738a6eec1769a1b973b..ef0706672f1c680107af401cdfb4ae62d8886d8c 100644 --- a/pkgs/hashtables.nix +++ b/pkgs/hashtables.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/haskell-language-server.nix b/pkgs/haskell-language-server.nix index 8c07436b00d90f3bbabc9ab6130168f961f8a212..41adb2db7a44f9d1653eee7ac09ce830445aef6a 100644 --- a/pkgs/haskell-language-server.nix +++ b/pkgs/haskell-language-server.nix @@ -69,7 +69,7 @@ mkDerivation { benchmarkToolDepends = [ ghcide-bench hp2pretty implicit-hie ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/haskell-src.nix b/pkgs/haskell-src.nix index da6454316b5af73d75a3e539f6bf3d45e7317980..ad389573a0fa4e0b09fcf4453a5449b22959b9e9 100644 --- a/pkgs/haskell-src.nix +++ b/pkgs/haskell-src.nix @@ -12,7 +12,7 @@ mkDerivation { libraryToolDepends = [ happy ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hasql-explain-tests.nix b/pkgs/hasql-explain-tests.nix index 67366f29d0d35e3ab66538fcb05fbf0b83353f2a..2d73440938ceaa349baf96fd6894ed52beb0bff8 100644 --- a/pkgs/hasql-explain-tests.nix +++ b/pkgs/hasql-explain-tests.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base hasql tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hasql-migration.nix b/pkgs/hasql-migration.nix index 22980c5fbcdcbaecabd471c0c24167c729c56b4a..f13237ba79ce3aae9c39e14eb9c3daa64a14ef03 100644 --- a/pkgs/hasql-migration.nix +++ b/pkgs/hasql-migration.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hasql-th.nix b/pkgs/hasql-th.nix index a3ac3fc5ca7c37f1019b0a31c7e2c2d053abc02d..5453f0362b7914df8b5dd64bc46866f1037d6f3d 100644 --- a/pkgs/hasql-th.nix +++ b/pkgs/hasql-th.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hasql-transaction.nix b/pkgs/hasql-transaction.nix index 83ffb87fda7eac24d37cfe962a6faa2fe3d97119..39942cd0557a3125412df33a9f8e0a174c267299 100644 --- a/pkgs/hasql-transaction.nix +++ b/pkgs/hasql-transaction.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ async contravariant-extras hasql rerebase ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hasql.nix b/pkgs/hasql.nix index eb06b24e5e24dd1109e0df7ac61c02827430314c..ab60b5d0ed7480713415b5d2d48c4ca0894326f4 100644 --- a/pkgs/hasql.nix +++ b/pkgs/hasql.nix @@ -26,7 +26,7 @@ mkDerivation { benchmarkHaskellDepends = [ gauge rerebase ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hdaemonize.nix b/pkgs/hdaemonize.nix index f898639401e45b02b106639f59cd4915f1748a47..c64c636f3dfa4dc1cc3e0c407dacb4be31e6cf9e 100644 --- a/pkgs/hdaemonize.nix +++ b/pkgs/hdaemonize.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/headed-megaparsec.nix b/pkgs/headed-megaparsec.nix index 5540d98dccaa5d68eea6f3eefb707a155173a82d..42dd78785b31a9b468737f56221ba7f0be047055 100644 --- a/pkgs/headed-megaparsec.nix +++ b/pkgs/headed-megaparsec.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/heaps.nix b/pkgs/heaps.nix index 4af164a917e17f8c630f604704990c24b598d42a..0944abf59e5562325059ab79979bd81778a72acd 100644 --- a/pkgs/heaps.nix +++ b/pkgs/heaps.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hedgehog-extras.nix b/pkgs/hedgehog-extras.nix index 22047c9cabc2d2ccdaf2dbb891e708a35c1b9f9a..aa8606b70040c7124878dad7a2326c10deff7dd6 100644 --- a/pkgs/hedgehog-extras.nix +++ b/pkgs/hedgehog-extras.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hedgehog-fn.nix b/pkgs/hedgehog-fn.nix index aa695d438ff402a2a37add5e0403ea9a0aced2ec..9ebb43ce1d6b4e65d2fbd981aef4dab832f821f1 100644 --- a/pkgs/hedgehog-fn.nix +++ b/pkgs/hedgehog-fn.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hedgehog-golden.nix b/pkgs/hedgehog-golden.nix index 47457ea98538e5f9c92f27c7cadfd4e2c467d802..162cb54ca69848e14bb2e3238e5e7f73271dce16 100644 --- a/pkgs/hedgehog-golden.nix +++ b/pkgs/hedgehog-golden.nix @@ -21,7 +21,7 @@ mkDerivation { testHaskellDepends = [ aeson base hedgehog with-utf8 ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hedgehog-quickcheck.nix b/pkgs/hedgehog-quickcheck.nix index 8ff24c4f9e9ebb86f501f7c7f4ecdf4d7a8d797d..f46b555a0ec7c2ae95a113e8af2dbbdad980384c 100644 --- a/pkgs/hedgehog-quickcheck.nix +++ b/pkgs/hedgehog-quickcheck.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base hedgehog QuickCheck transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/heredoc.nix b/pkgs/heredoc.nix index 46ef01bac4271f0abe3caaf5b36b46f3acfb86c0..b109e2dfdcb7e8bdd09680900090d94c30ff1b6f 100644 --- a/pkgs/heredoc.nix +++ b/pkgs/heredoc.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base template-haskell ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hex-text.nix b/pkgs/hex-text.nix index 31cf8be2b96a2b715eb3c32862f04e03cfa1c513..58493eaa93f1fc42ff2013703ae2f413fd74a187 100644 --- a/pkgs/hex-text.nix +++ b/pkgs/hex-text.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hie-bios.nix b/pkgs/hie-bios.nix index a32305e79c8bf405915db820ce73656856f1abf3..9b333081299f14c238761de98e20b8775c479954 100644 --- a/pkgs/hie-bios.nix +++ b/pkgs/hie-bios.nix @@ -31,7 +31,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hie-compat.nix b/pkgs/hie-compat.nix index 4fbcee98385ca0e1bdbdf11fb5ff04df32778a32..694eb26d4c9685d4bd702583f4814d63e38591fb 100644 --- a/pkgs/hie-compat.nix +++ b/pkgs/hie-compat.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hiedb.nix b/pkgs/hiedb.nix index d56aa366115b569e2ee784eeb921fa244f11d007..238cd8adb3b0222bc3619c52b38263a1f4db23cc 100644 --- a/pkgs/hiedb.nix +++ b/pkgs/hiedb.nix @@ -27,7 +27,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hinotify.nix b/pkgs/hinotify.nix index 8349819766f851058acf19b596e7d32a08f992c5..538fe6918ad3efeb391b4a532440661bf9ef40a5 100644 --- a/pkgs/hinotify.nix +++ b/pkgs/hinotify.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base bytestring directory unix ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hint.nix b/pkgs/hint.nix index 0358dd9370513528f071303fea09ead71db29f12..4eeaaf0c2f43732ca34885119cb1ff6a57f0cbf7 100644 --- a/pkgs/hint.nix +++ b/pkgs/hint.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hlint.nix b/pkgs/hlint.nix index e5169e51e64b6b822acc75168d277d823cefc6d4..33d45b96b64ab16391b2d9d78aa7372ca9e1f301 100644 --- a/pkgs/hlint.nix +++ b/pkgs/hlint.nix @@ -22,7 +22,7 @@ mkDerivation { executableHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-alternate-number-format-plugin.nix b/pkgs/hls-alternate-number-format-plugin.nix index b6e3bfb511b39e557a102520a2b9cd16c65e298d..353caa605d1b81c5e84ce684563929d87a34c0d7 100644 --- a/pkgs/hls-alternate-number-format-plugin.nix +++ b/pkgs/hls-alternate-number-format-plugin.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-cabal-fmt-plugin.nix b/pkgs/hls-cabal-fmt-plugin.nix index 38648a0d6eba28eefea3b6dd09e6dea5f88376d9..c6d1f154bb1263019de92c33d8970a0affc13477 100644 --- a/pkgs/hls-cabal-fmt-plugin.nix +++ b/pkgs/hls-cabal-fmt-plugin.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base directory filepath hls-test-utils ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-cabal-plugin.nix b/pkgs/hls-cabal-plugin.nix index f3a039bd7ad778a03729df355aa8a2d2ef1b37b7..c3bc677d32eecbb67999fbf9c58a2b553904cbfa 100644 --- a/pkgs/hls-cabal-plugin.nix +++ b/pkgs/hls-cabal-plugin.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-call-hierarchy-plugin.nix b/pkgs/hls-call-hierarchy-plugin.nix index eb5c99430b86d51b2ee4394d7868164b818acf9a..3eb176471c8716e8b1c0bd5d9637663a1abb731e 100644 --- a/pkgs/hls-call-hierarchy-plugin.nix +++ b/pkgs/hls-call-hierarchy-plugin.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-change-type-signature-plugin.nix b/pkgs/hls-change-type-signature-plugin.nix index 43cefc6a2f49238c53fbcf4f72844d1010e220f4..dec494caeec4f118b9d28c3c9378baa7a6aa9827 100644 --- a/pkgs/hls-change-type-signature-plugin.nix +++ b/pkgs/hls-change-type-signature-plugin.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-class-plugin.nix b/pkgs/hls-class-plugin.nix index 26a92f7c855ca6f05760048bea8cec7c453a3087..7bc3504a4c07eac1a727375e2e37ab7dc43f9abb 100644 --- a/pkgs/hls-class-plugin.nix +++ b/pkgs/hls-class-plugin.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-code-range-plugin.nix b/pkgs/hls-code-range-plugin.nix index 5f366a9a733d0e676174c8f65753263c86a62793..39fe66c529854cda87aeb540314a29c797a2b6d6 100644 --- a/pkgs/hls-code-range-plugin.nix +++ b/pkgs/hls-code-range-plugin.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-explicit-fixity-plugin.nix b/pkgs/hls-explicit-fixity-plugin.nix index 2524ee683a8b7ed3e4890a0e64474ffa2ee04adc..a1ba1bdde77977603deaa89dac939037f2b35a4c 100644 --- a/pkgs/hls-explicit-fixity-plugin.nix +++ b/pkgs/hls-explicit-fixity-plugin.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base filepath hls-test-utils text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-explicit-imports-plugin.nix b/pkgs/hls-explicit-imports-plugin.nix index 8f061f607a25f470d732540af1c952ec93fc8d53..d477bd923f8b0791a33b7ebf0cb0dbcb158da104 100644 --- a/pkgs/hls-explicit-imports-plugin.nix +++ b/pkgs/hls-explicit-imports-plugin.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-explicit-record-fields-plugin.nix b/pkgs/hls-explicit-record-fields-plugin.nix index c209a4e77a783c77a0b507f4ddd1bec447971a0d..e6b7a24f6d7eec94be394ff93c6b071763b1cb0a 100644 --- a/pkgs/hls-explicit-record-fields-plugin.nix +++ b/pkgs/hls-explicit-record-fields-plugin.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-fourmolu-plugin.nix b/pkgs/hls-fourmolu-plugin.nix deleted file mode 100644 index 6b035845ffc57f5a7bb5e58b1930f7fc1f8a3f87..0000000000000000000000000000000000000000 --- a/pkgs/hls-fourmolu-plugin.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ mkDerivation, aeson, base, containers, filepath, fourmolu, ghc -, ghc-boot-th, ghcide, hls-plugin-api, hls-test-utils, lens, lib -, lsp, lsp-test, mtl, process-extras, text, transformers -}: -mkDerivation { - pname = "hls-fourmolu-plugin"; - version = "2.4.0.0"; - sha256 = "2b3b287559d2f01e24cba8206212340e5a2d6431c0a8cc962e7f209776737d84"; - isLibrary = true; - isExecutable = false; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - base filepath fourmolu ghc ghc-boot-th ghcide hls-plugin-api lens - lsp mtl process-extras text transformers - ]; - testHaskellDepends = [ - aeson base containers filepath hls-plugin-api hls-test-utils - lsp-test - ]; - testToolDepends = [ fourmolu ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/haskell/haskell-language-server"; - description = "Integration with the Fourmolu code formatter"; - license = lib.licenses.asl20; - broken = false; -} \ No newline at end of file diff --git a/pkgs/hls-gadt-plugin.nix b/pkgs/hls-gadt-plugin.nix index 851fd379052569bd5f77ef94e216a0280321657f..654a727db0cfde6166922e809f21690efc493936 100644 --- a/pkgs/hls-gadt-plugin.nix +++ b/pkgs/hls-gadt-plugin.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-graph.nix b/pkgs/hls-graph.nix index 48ed3bec9a4880a67d6735ce44614361f4e0fbe8..ab0b7b4415738312541ec62748080f53f7183742 100644 --- a/pkgs/hls-graph.nix +++ b/pkgs/hls-graph.nix @@ -24,7 +24,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-hlint-plugin.nix b/pkgs/hls-hlint-plugin.nix index 6225cf15b70a60c083f51a66b3b09fca23862053..1ad20695a41693c71d3ed9602f284ab12e6d26cd 100644 --- a/pkgs/hls-hlint-plugin.nix +++ b/pkgs/hls-hlint-plugin.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-module-name-plugin.nix b/pkgs/hls-module-name-plugin.nix index 8a179fe1bd8a199e353a6eba1afcc72813b816f8..8e544e29d07a28e9a7d393ea6d0c26c5d1b843e7 100644 --- a/pkgs/hls-module-name-plugin.nix +++ b/pkgs/hls-module-name-plugin.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base filepath hls-test-utils ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-overloaded-record-dot-plugin.nix b/pkgs/hls-overloaded-record-dot-plugin.nix index 3366cc918facc7778f70fd81a5d8900d3f7e8378..7c94700f0284931c0511d4065c3ebfc57ef10ba3 100644 --- a/pkgs/hls-overloaded-record-dot-plugin.nix +++ b/pkgs/hls-overloaded-record-dot-plugin.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-plugin-api.nix b/pkgs/hls-plugin-api.nix index bf4606a2dd7b8c25bc598f7250293012dbebb62d..af7bd4e474f6786f362f2aba87b1c8424ede87f5 100644 --- a/pkgs/hls-plugin-api.nix +++ b/pkgs/hls-plugin-api.nix @@ -30,7 +30,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-pragmas-plugin.nix b/pkgs/hls-pragmas-plugin.nix index f1ec62053f7992afd32d7292168e9f85f76f62ad..e576045f47c564459ded872309c8c278c4f1cfa5 100644 --- a/pkgs/hls-pragmas-plugin.nix +++ b/pkgs/hls-pragmas-plugin.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-qualify-imported-names-plugin.nix b/pkgs/hls-qualify-imported-names-plugin.nix index 9af7109c8afb94f7672455641721b54c25724f06..db557d1c406b794e32d8108e31dc10002f50a988 100644 --- a/pkgs/hls-qualify-imported-names-plugin.nix +++ b/pkgs/hls-qualify-imported-names-plugin.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base filepath hls-test-utils text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-refactor-plugin.nix b/pkgs/hls-refactor-plugin.nix index 3b55605bc45cb14e126d0aee648e3950303cb872..205725e3d73dd76b57fda762ae1e07e081e44bf4 100644 --- a/pkgs/hls-refactor-plugin.nix +++ b/pkgs/hls-refactor-plugin.nix @@ -28,7 +28,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-refine-imports-plugin.nix b/pkgs/hls-refine-imports-plugin.nix deleted file mode 100644 index 1836d2b6532c15814623dd4ff6c332cb99ab35a1..0000000000000000000000000000000000000000 --- a/pkgs/hls-refine-imports-plugin.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ mkDerivation, aeson, base, containers, deepseq, filepath, ghc -, ghcide, hls-explicit-imports-plugin, hls-graph, hls-plugin-api -, hls-test-utils, lib, lsp, text, unordered-containers -}: -mkDerivation { - pname = "hls-refine-imports-plugin"; - version = "2.0.0.1"; - sha256 = "8ebe2df70f255eef9034fcbdcab693f60d901c6263550ef8dffb0bf008fe7243"; - isLibrary = true; - isExecutable = false; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - aeson base containers deepseq ghc ghcide - hls-explicit-imports-plugin hls-graph hls-plugin-api lsp text - unordered-containers - ]; - testHaskellDepends = [ base filepath hls-test-utils text ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - description = "Refine imports plugin for Haskell Language Server"; - license = lib.licenses.asl20; - broken = false; -} \ No newline at end of file diff --git a/pkgs/hls-retrie-plugin.nix b/pkgs/hls-retrie-plugin.nix index fb106a7fc4f2038a2c3c73fac8dfa11abe843c6f..1ef235d0c31275411a94866b89fe94b14446c8c1 100644 --- a/pkgs/hls-retrie-plugin.nix +++ b/pkgs/hls-retrie-plugin.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-splice-plugin.nix b/pkgs/hls-splice-plugin.nix index 8ccb6687a16b568a506a4cc5d20e2d68c43dfcf0..a23e9cdd882b03254167b2f8e1a8dbcc63d37386 100644 --- a/pkgs/hls-splice-plugin.nix +++ b/pkgs/hls-splice-plugin.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hls-test-utils.nix b/pkgs/hls-test-utils.nix index 3fb1819835a6fe83cd9f76ad08d8d214fb6d688c..0b5285454bdffc0f13da44b5ec59dd6ecbecce92 100644 --- a/pkgs/hls-test-utils.nix +++ b/pkgs/hls-test-utils.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hnix-store-core.nix b/pkgs/hnix-store-core.nix deleted file mode 100644 index 0eb2254aac17ae962a42c63887d26a074e471ed7..0000000000000000000000000000000000000000 --- a/pkgs/hnix-store-core.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ mkDerivation, algebraic-graphs, attoparsec, base -, base16-bytestring, base64-bytestring, binary, bytestring, cereal -, containers, cryptonite, directory, filepath, hashable, hspec, lib -, lifted-base, memory, monad-control, mtl, nix-derivation, process -, relude, saltine, tasty, tasty-discover, tasty-golden, tasty-hspec -, tasty-hunit, tasty-quickcheck, temporary, text, time, unix -, unordered-containers, vector -}: -mkDerivation { - pname = "hnix-store-core"; - version = "0.6.1.0"; - sha256 = "779c1ea6802b0ff4f217d95c7ad9963cf136c9d180f07f9db0182ab695e0f1af"; - isLibrary = true; - isExecutable = false; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - algebraic-graphs attoparsec base base16-bytestring - base64-bytestring bytestring cereal containers cryptonite directory - filepath hashable lifted-base memory monad-control mtl - nix-derivation relude saltine text time unix unordered-containers - vector - ]; - testHaskellDepends = [ - attoparsec base base16-bytestring base64-bytestring binary - bytestring containers cryptonite directory filepath hspec process - relude tasty tasty-golden tasty-hspec tasty-hunit tasty-quickcheck - temporary text unix - ]; - testToolDepends = [ tasty-discover ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/haskell-nix/hnix-store"; - description = "Core effects for interacting with the Nix store"; - license = lib.licenses.asl20; - broken = false; -} \ No newline at end of file diff --git a/pkgs/hnix-store-remote.nix b/pkgs/hnix-store-remote.nix deleted file mode 100644 index 4f868fae431cbaa3678a8cda0f6a2f5679e58c44..0000000000000000000000000000000000000000 --- a/pkgs/hnix-store-remote.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ mkDerivation, attoparsec, base, binary, bytestring, containers -, cryptonite, hnix-store-core, lib, mtl, network, nix-derivation -, relude, text, time, unordered-containers -}: -mkDerivation { - pname = "hnix-store-remote"; - version = "0.6.0.0"; - sha256 = "f96cfc2ec7d0ccbaa1c6366a2b7f83b3e26807e63dae3d144f5de6f24d58d1d7"; - isLibrary = true; - isExecutable = false; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - attoparsec base binary bytestring containers cryptonite - hnix-store-core mtl network nix-derivation relude text time - unordered-containers - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/haskell-nix/hnix-store"; - description = "Remote hnix store"; - license = lib.licenses.asl20; - broken = false; -} \ No newline at end of file diff --git a/pkgs/hnix.nix b/pkgs/hnix.nix deleted file mode 100644 index 72aee02252449bb5957be528ba46177dc7765dbd..0000000000000000000000000000000000000000 --- a/pkgs/hnix.nix +++ /dev/null @@ -1,67 +0,0 @@ -{ mkDerivation, Diff, Glob, aeson, array, base, base16-bytestring -, binary, bytestring, comonad, containers, criterion, cryptonite -, data-fix, deepseq, deriving-compat, directory, exceptions, extra -, fetchgit, filepath, free, gitrev, hashable, hashing, haskeline -, hedgehog, hnix-store-core, hnix-store-remote, http-client -, http-client-tls, http-types, lens-family, lens-family-core -, lens-family-th, lib, logict, megaparsec, monad-control, monadlist -, mtl, neat-interpolation, optparse-applicative, parser-combinators -, pretty-show, prettyprinter, process, ref-tf, regex-tdfa, relude -, repline, scientific, semialign, serialise, some, split, syb -, tasty, tasty-hedgehog, tasty-hunit, tasty-th, template-haskell -, text, th-lift-instances, these, time, transformers -, transformers-base, unix-compat, unordered-containers, vector, xml -}: -mkDerivation { - pname = "hnix"; - version = "0.16.0"; - src = fetchgit { - url = "https://github.com/haskell-nix/hnix"; - sha256 = "1ga7dg59ghq1w4j8mgy0lhk98lrqx1wmq5z6xbpf1i7qka5x8l1l"; - rev = "48e962a3497893c30a749d085ebf82a8cc5cd5bd"; - fetchSubmodules = true; - }; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring comonad - containers cryptonite data-fix deepseq deriving-compat directory - exceptions extra filepath free gitrev hashable hashing - hnix-store-core hnix-store-remote http-client http-client-tls - http-types lens-family lens-family-core lens-family-th logict - megaparsec monad-control monadlist mtl neat-interpolation - optparse-applicative parser-combinators pretty-show prettyprinter - process ref-tf regex-tdfa relude scientific semialign serialise - some split syb template-haskell text th-lift-instances these time - transformers transformers-base unix-compat unordered-containers - vector xml - ]; - executableHaskellDepends = [ - aeson base comonad containers data-fix deepseq exceptions filepath - free haskeline optparse-applicative pretty-show prettyprinter - ref-tf relude repline serialise template-haskell time - ]; - testHaskellDepends = [ - base containers data-fix Diff directory exceptions filepath Glob - hedgehog megaparsec neat-interpolation optparse-applicative - pretty-show prettyprinter process relude serialise split tasty - tasty-hedgehog tasty-hunit tasty-th template-haskell time - unix-compat - ]; - benchmarkHaskellDepends = [ - base criterion data-fix exceptions filepath optparse-applicative - relude serialise template-haskell time - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/haskell-nix/hnix#readme"; - description = "Haskell implementation of the Nix language"; - license = lib.licenses.bsd3; - broken = false; -} \ No newline at end of file diff --git a/pkgs/hosc.nix b/pkgs/hosc.nix index d5591d276584701daa050189159eaf7c5255eaab..f0001f395be01cdd0449a17b53530c9b18c36692 100644 --- a/pkgs/hosc.nix +++ b/pkgs/hosc.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hp2pretty.nix b/pkgs/hp2pretty.nix index 1709a470f26ff13dba7484064d01a3935db3ee76..5e22b71970b1c9b5a9711605f71e517aef0afcfb 100644 --- a/pkgs/hp2pretty.nix +++ b/pkgs/hp2pretty.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hpack-dhall.nix b/pkgs/hpack-dhall.nix deleted file mode 100644 index 1360e944447ee8916f927224284f7bf78706c010..0000000000000000000000000000000000000000 --- a/pkgs/hpack-dhall.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ mkDerivation, Cabal, Diff, aeson, aeson-pretty, base, bytestring -, dhall, dhall-json, directory, filepath, hpack, lib, megaparsec -, microlens, optparse-applicative, prettyprinter, tasty -, tasty-golden, text, transformers, utf8-string, yaml -}: -mkDerivation { - pname = "hpack-dhall"; - version = "0.5.7"; - sha256 = "798053584b64213fdb724b79368f71094ef5912af1cf46efe991501bd51d98c3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring dhall dhall-json filepath hpack - megaparsec microlens prettyprinter text transformers yaml - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall dhall-json filepath hpack - megaparsec microlens optparse-applicative prettyprinter text - transformers yaml - ]; - testHaskellDepends = [ - aeson aeson-pretty base bytestring Cabal dhall dhall-json Diff - directory filepath hpack megaparsec microlens prettyprinter tasty - tasty-golden text transformers utf8-string yaml - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/cabalism/hpack-dhall#readme"; - description = "hpack's dhalling"; - license = lib.licenses.bsd3; - broken = false; -} \ No newline at end of file diff --git a/pkgs/hslogger.nix b/pkgs/hslogger.nix index 3003e55ed5c34c18257f15f473afca57cbbe5e56..f0af843f8061f2a0232c8d3b93d9140a3a1fd634 100644 --- a/pkgs/hslogger.nix +++ b/pkgs/hslogger.nix @@ -17,7 +17,7 @@ mkDerivation { testHaskellDepends = [ base HUnit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-aeson.nix b/pkgs/hslua-aeson.nix index a2e4583e081115c29e444a1f9fa4df61646b38f3..9614ab69cb0ca22d87fd1f49eb786faf1006a2c1 100644 --- a/pkgs/hslua-aeson.nix +++ b/pkgs/hslua-aeson.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-classes.nix b/pkgs/hslua-classes.nix index 90eec1e2755dbdf93a7bbe79edb2f5982d31a228..3484e478b1994520915779f8fcc5bf2258f491e1 100644 --- a/pkgs/hslua-classes.nix +++ b/pkgs/hslua-classes.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-core.nix b/pkgs/hslua-core.nix index 2c6a7d4a47c4cf664f171cbe1ea0fe398c06dd58..5345d296667b603e68dc99b92a17a363e39b7b33 100644 --- a/pkgs/hslua-core.nix +++ b/pkgs/hslua-core.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-list.nix b/pkgs/hslua-list.nix index 59d378f6f77fe40682c943de5c119e137781e99c..956b19511260e02d797abfdb2fc7b2710aa916a7 100644 --- a/pkgs/hslua-list.nix +++ b/pkgs/hslua-list.nix @@ -11,7 +11,7 @@ mkDerivation { testHaskellDepends = [ base hslua-core tasty tasty-lua ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-marshalling.nix b/pkgs/hslua-marshalling.nix index 5420fe568815ae1f70523dce97cc540db175c32a..98cbf4aa4e0aa011cdf248d1d0c7f5425b59c146 100644 --- a/pkgs/hslua-marshalling.nix +++ b/pkgs/hslua-marshalling.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-module-doclayout.nix b/pkgs/hslua-module-doclayout.nix index 5213b298b920dc1f013f5a5d9825f9635170db93..1c901dcb290fa0ca8edd361a7d565763e76714aa 100644 --- a/pkgs/hslua-module-doclayout.nix +++ b/pkgs/hslua-module-doclayout.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-module-path.nix b/pkgs/hslua-module-path.nix index b14c1d75cca9a5b9428efa9b7ff9bf63c0094773..bd692b04b080365506d11745e4357c48e0387236 100644 --- a/pkgs/hslua-module-path.nix +++ b/pkgs/hslua-module-path.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-module-system.nix b/pkgs/hslua-module-system.nix index 835d6ebdf6815732a3443df80121fc4919a5c347..8ca7c477aea039fba7d2e7e523f31a5afde336ee 100644 --- a/pkgs/hslua-module-system.nix +++ b/pkgs/hslua-module-system.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-module-text.nix b/pkgs/hslua-module-text.nix index 4d5fddf78f3c29fe26f7fe927d3a0d4ab056a1ba..b995cfc32db1d1bdb85a6c30a699d6dd38fe79f0 100644 --- a/pkgs/hslua-module-text.nix +++ b/pkgs/hslua-module-text.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-module-version.nix b/pkgs/hslua-module-version.nix index 0dd4830d5988ef35430c9f8fb580eb4d73a3fc57..6692c7bb2810393439db00ec5a54787fdf7b6e33 100644 --- a/pkgs/hslua-module-version.nix +++ b/pkgs/hslua-module-version.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-objectorientation.nix b/pkgs/hslua-objectorientation.nix index 602d95fc18625258ee8df0f406d0f10b0c9fe418..51aceb979f36616ef8ad3cc73448815d95750023 100644 --- a/pkgs/hslua-objectorientation.nix +++ b/pkgs/hslua-objectorientation.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-packaging.nix b/pkgs/hslua-packaging.nix index 9c0f56c65d2c38c17b4b2f82a5ec6ff452412a77..c78bbc255eb40b5be1a1877ab5bb8f815668dc7b 100644 --- a/pkgs/hslua-packaging.nix +++ b/pkgs/hslua-packaging.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua-typing.nix b/pkgs/hslua-typing.nix index c6e9e3520b4430a29bcaa406df03c4efe816b369..06243d26ca861b493692206866f0675a3efbd382 100644 --- a/pkgs/hslua-typing.nix +++ b/pkgs/hslua-typing.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hslua.nix b/pkgs/hslua.nix index a5e621620041e643e3219d45faa9ff88357c38ba..9e7d6e5fb7089254091bc5fe42b295ce2c348489 100644 --- a/pkgs/hslua.nix +++ b/pkgs/hslua.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hspec-attoparsec.nix b/pkgs/hspec-attoparsec.nix index 8d7667044220d1f3b495fa815c388299ddaf728e..aa739241aff8b02c6494e3227ac32469aac42e50 100644 --- a/pkgs/hspec-attoparsec.nix +++ b/pkgs/hspec-attoparsec.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hspec-contrib.nix b/pkgs/hspec-contrib.nix index 30cac4950330f7a230803e4e384e478eba747c0d..734a968499aba91eb239a75258e6f42645527ab0 100644 --- a/pkgs/hspec-contrib.nix +++ b/pkgs/hspec-contrib.nix @@ -15,7 +15,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hspec-expectations-lifted.nix b/pkgs/hspec-expectations-lifted.nix index 4610d069bea3e4d060b3af1e24f48caa03f4709f..b25e50d806401e165f30635843b4e7a5a234d33f 100644 --- a/pkgs/hspec-expectations-lifted.nix +++ b/pkgs/hspec-expectations-lifted.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base hspec-expectations transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hspec-golden-aeson.nix b/pkgs/hspec-golden-aeson.nix index 157b66a4b85828c8b2cfafd1ad16a702399929ef..606812b4ec0e9dce507dc07e5a15e8110ac7391f 100644 --- a/pkgs/hspec-golden-aeson.nix +++ b/pkgs/hspec-golden-aeson.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hspec-golden.nix b/pkgs/hspec-golden.nix index d30c5c6bd9e35b9873b146ec380374472c98c95d..cce7dcddc4acc7fcdb2db6d30b6618240c247f36 100644 --- a/pkgs/hspec-golden.nix +++ b/pkgs/hspec-golden.nix @@ -14,7 +14,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hspec-hedgehog.nix b/pkgs/hspec-hedgehog.nix index 7eba67876348b880f9c382bbbd4e399bab8c2d86..429cbdf22769a6aeabb7aa0258c57c0e4eed76f4 100644 --- a/pkgs/hspec-hedgehog.nix +++ b/pkgs/hspec-hedgehog.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base hedgehog hspec ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hspec-megaparsec.nix b/pkgs/hspec-megaparsec.nix index f937830ff95239bb9b07ddc11bba007974a03270..6abff1f19c395e679d7854dadba3676cca49511f 100644 --- a/pkgs/hspec-megaparsec.nix +++ b/pkgs/hspec-megaparsec.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base hspec megaparsec ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hspec-wai.nix b/pkgs/hspec-wai.nix index e698a05d30c6d65513b4f72bdeaebf4330c25c9c..4546e752ba84828ad4e1bac539c98931bc5a4623 100644 --- a/pkgs/hspec-wai.nix +++ b/pkgs/hspec-wai.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hsyslog.nix b/pkgs/hsyslog.nix index e38ecd1a74a11d8950cb7dab0ff6e1a3e4e9ee72..3b903d9f0194ddf79b5b06d9f4923917cdfcaab8 100644 --- a/pkgs/hsyslog.nix +++ b/pkgs/hsyslog.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/html-entities.nix b/pkgs/html-entities.nix index 49ebbb925168ebd48d185b853e27a061cfec1264..2b7320a19c3062923d065954dcced6f2648d7ae7 100644 --- a/pkgs/html-entities.nix +++ b/pkgs/html-entities.nix @@ -12,7 +12,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/html-entity-map.nix b/pkgs/html-entity-map.nix index 429854b0e7ff656e77fa74b45f4935d1e505ce1f..6e0fc03bd2eae9cf68b48b1b5fe96ec1ae719ada 100644 --- a/pkgs/html-entity-map.nix +++ b/pkgs/html-entity-map.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/html.nix b/pkgs/html.nix index ca6fac85ace4e4eefad34a11fdb75c4531b10f50..616fafcfb34abf58df19271657a44c49f87e3ed4 100644 --- a/pkgs/html.nix +++ b/pkgs/html.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/http-api-data.nix b/pkgs/http-api-data.nix index cb41e7acf18070e13283ef12a983a52cbc520a42..e1b9d340a1b5837dedfa1729204bdc33b31a0d56 100644 --- a/pkgs/http-api-data.nix +++ b/pkgs/http-api-data.nix @@ -24,7 +24,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/http-common.nix b/pkgs/http-common.nix index f145b30a63abe18e5323b2bbe485a659db55fe1c..ff5fe301358db590e9b32d966c08aafd965a0ced 100644 --- a/pkgs/http-common.nix +++ b/pkgs/http-common.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/http-media.nix b/pkgs/http-media.nix index fe4ce9abd47969101f58d172090ff1de61cede3c..02593c62643142019f16c8b4265dd7d068ff0211 100644 --- a/pkgs/http-media.nix +++ b/pkgs/http-media.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/http-streams.nix b/pkgs/http-streams.nix index 414c60b61cd5115e769738a5eaa32c651f442d68..b3353c6d1e48db3977fb2ff19385fdac9c6cdd85 100644 --- a/pkgs/http-streams.nix +++ b/pkgs/http-streams.nix @@ -27,7 +27,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hw-aeson.nix b/pkgs/hw-aeson.nix index 9dbad5db49c019e39f2a10c6ce76c28dca5bd9d3..b93d4de3bf8a03bd1b725dcffc4841447f473701 100644 --- a/pkgs/hw-aeson.nix +++ b/pkgs/hw-aeson.nix @@ -21,7 +21,7 @@ mkDerivation { testToolDepends = [ doctest-discover hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hw-fingertree.nix b/pkgs/hw-fingertree.nix index 08d24bdd7bd3a63c02de5d9cc66844f9290ba7a3..399dc71bb4022d4d2b469bf93f349d3084909040 100644 --- a/pkgs/hw-fingertree.nix +++ b/pkgs/hw-fingertree.nix @@ -18,7 +18,7 @@ mkDerivation { testToolDepends = [ doctest-discover hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hw-hedgehog.nix b/pkgs/hw-hedgehog.nix index 26793bc547a7c09a4f79638fb9ebf2539673cf5d..d2b710fc9d435c48368304426cf300293b3d566b 100644 --- a/pkgs/hw-hedgehog.nix +++ b/pkgs/hw-hedgehog.nix @@ -15,7 +15,7 @@ mkDerivation { testToolDepends = [ doctest-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hw-hspec-hedgehog.nix b/pkgs/hw-hspec-hedgehog.nix index f47c220e177a5796bb132612d7fde159e28226a4..668220f8f1fbc17a41cf164c5a6d4247aacc913c 100644 --- a/pkgs/hw-hspec-hedgehog.nix +++ b/pkgs/hw-hspec-hedgehog.nix @@ -19,7 +19,7 @@ mkDerivation { testToolDepends = [ doctest-discover hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hw-prim.nix b/pkgs/hw-prim.nix index 65e773971dc87e1b53f4b85e0e64c2a3373385da..b10c83eb4c421c6c89140b557356c84a750a8120 100644 --- a/pkgs/hw-prim.nix +++ b/pkgs/hw-prim.nix @@ -27,7 +27,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hxt-charproperties.nix b/pkgs/hxt-charproperties.nix index 2f5f2085a6f89d70bb3426d3cfc7b796e3067fe9..cfe7a2206cc9930d60bf4a378b0adfec9c51d327 100644 --- a/pkgs/hxt-charproperties.nix +++ b/pkgs/hxt-charproperties.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hxt-regex-xmlschema.nix b/pkgs/hxt-regex-xmlschema.nix index 54dd2e4c423b4080e4b7fc7445fd501735b50474..e386f1aff75db9eff851a303eeb51765dff1ec5f 100644 --- a/pkgs/hxt-regex-xmlschema.nix +++ b/pkgs/hxt-regex-xmlschema.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hxt-unicode.nix b/pkgs/hxt-unicode.nix index 398d4c4fe3156ddc4e4b5a8a9f352d3db67af070..a98d138df15b3704be49a2eb84516a1a58d7eb0a 100644 --- a/pkgs/hxt-unicode.nix +++ b/pkgs/hxt-unicode.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base hxt-charproperties ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/hxt.nix b/pkgs/hxt.nix index be0d7cb476b128605faffa7b9cc57aa9ec1ef534..d4d539a6000d33be30a148c4143048fe8d4eda64 100644 --- a/pkgs/hxt.nix +++ b/pkgs/hxt.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/implicit-hie-cradle.nix b/pkgs/implicit-hie-cradle.nix index 8181cced922efb7366b605a95ceb6071be8ad79d..ece39496d5ea44ef05d55ce2fd1511d2daea7b79 100644 --- a/pkgs/implicit-hie-cradle.nix +++ b/pkgs/implicit-hie-cradle.nix @@ -17,7 +17,7 @@ mkDerivation { testHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/implicit-hie.nix b/pkgs/implicit-hie.nix index 247c26144432a9720d08c75ad93079aa250cf11c..9be9c08fd58dadaaf119f18cd9ee4da9b9d012b3 100644 --- a/pkgs/implicit-hie.nix +++ b/pkgs/implicit-hie.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/incipit-base.nix b/pkgs/incipit-base.nix index 2c9291c2597ade816d62f82ffc0c430d2b1cc94d..552f97be5bbc8ec9e74ac2fefaf50a9122f22b65 100644 --- a/pkgs/incipit-base.nix +++ b/pkgs/incipit-base.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/incipit-core.nix b/pkgs/incipit-core.nix index 2485df07b0764ab3ca7ad42bd93093ad76f3f24a..f2f9396aa0e8e3e59707085af2a11b1d4b63f583 100644 --- a/pkgs/incipit-core.nix +++ b/pkgs/incipit-core.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base incipit-base polysemy ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/indexed-list-literals.nix b/pkgs/indexed-list-literals.nix index 1300d77fc8814edab8af59c04a7f3fa2b0225834..ae92fc88d7b882a21831ad007264b503edbf54f0 100644 --- a/pkgs/indexed-list-literals.nix +++ b/pkgs/indexed-list-literals.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base hspec ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/indexed-profunctors.nix b/pkgs/indexed-profunctors.nix index be09ecb21abc946dbd8e25e6993aab3751dce543..6e368a3303b88e758f1319fd0bf4c8e44cd2269f 100644 --- a/pkgs/indexed-profunctors.nix +++ b/pkgs/indexed-profunctors.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/inline-c.nix b/pkgs/inline-c.nix index 112d3a3255aac27efad6cf9b8f6c7a5a2587f5ac..ebdedd944a9b6fb4d054a99a53da80704239e28c 100644 --- a/pkgs/inline-c.nix +++ b/pkgs/inline-c.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/insert-ordered-containers.nix b/pkgs/insert-ordered-containers.nix index 8f044c63ce12209ac7473ce12bfee097a08f5ce3..78409682e12633e050e4d79bc368a6bac05b60ce 100644 --- a/pkgs/insert-ordered-containers.nix +++ b/pkgs/insert-ordered-containers.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/int-cast.nix b/pkgs/int-cast.nix index 79c08893f5eefae6dcd0c9eba9340dac2cb6a3ce..017dff921d544ff9c23f693b71082f6935794e8c 100644 --- a/pkgs/int-cast.nix +++ b/pkgs/int-cast.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/integer-logarithms.nix b/pkgs/integer-logarithms.nix index f5455ecf90e7f535dd6edd3b1287572006aad110..7b54daf7ea26d3e42e14ea96a2c5d00f1c704d15 100644 --- a/pkgs/integer-logarithms.nix +++ b/pkgs/integer-logarithms.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/integration.nix b/pkgs/integration.nix index 8d4f42a89a364943b4befb6e65dc3db5e4997009..06ab8770bbcd2a9b49a7c5ace67b857eeae103e5 100644 --- a/pkgs/integration.nix +++ b/pkgs/integration.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base parallel ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/intervals.nix b/pkgs/intervals.nix index e9ef4f60188ec418bf52d7bb5103887d83736f4a..a25c650cb9fd53344a8375303a1ec40266f828e2 100644 --- a/pkgs/intervals.nix +++ b/pkgs/intervals.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/io-streams-haproxy.nix b/pkgs/io-streams-haproxy.nix index 735b6292e57540d704c46551e64a969915b770e7..ab7ae7fd807999436a8edfdd4a7a499ecfdd5065 100644 --- a/pkgs/io-streams-haproxy.nix +++ b/pkgs/io-streams-haproxy.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/io-streams.nix b/pkgs/io-streams.nix index b7dfd84879530022a8615b806e2a3cd27b035325..fe15fef3a51ebda727d416d8bef3ba06d6c8711d 100644 --- a/pkgs/io-streams.nix +++ b/pkgs/io-streams.nix @@ -26,7 +26,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ipynb.nix b/pkgs/ipynb.nix index b5167e83fba4e82f0356c5753d4c545ede3eaf45..9e65426433aa998ff08a3503f5c59d55a745b6bf 100644 --- a/pkgs/ipynb.nix +++ b/pkgs/ipynb.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/iso8601-time.nix b/pkgs/iso8601-time.nix index 856e46ee0bc1ca70a5feaa48b28a76a3fe025c1f..1173539e77923d2bc8cbfc70fe666c43d5cd4c02 100644 --- a/pkgs/iso8601-time.nix +++ b/pkgs/iso8601-time.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base hspec HUnit time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/isomorphism-class.nix b/pkgs/isomorphism-class.nix index 92fa34ed323b663fa1076438673f51af17feedd3..ea22616c5831405ef9e0354bbfa17e250987ac5d 100644 --- a/pkgs/isomorphism-class.nix +++ b/pkgs/isomorphism-class.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/iwlib.nix b/pkgs/iwlib.nix index 958fb2bd4e3b2b2eb621dc6f6ebce8d9badd7810..6fd73e78525d812249c4a37a3bb7b92c0a031c86 100644 --- a/pkgs/iwlib.nix +++ b/pkgs/iwlib.nix @@ -10,7 +10,7 @@ mkDerivation { librarySystemDepends = [ wirelesstools ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/jira-wiki-markup.nix b/pkgs/jira-wiki-markup.nix index cbe4c8739ae67a39c16ee73954d9a3e3ef1d0fff..6210ae34b75b7bd2008a3dc5c6b6fd3decbc9a3e 100644 --- a/pkgs/jira-wiki-markup.nix +++ b/pkgs/jira-wiki-markup.nix @@ -11,7 +11,7 @@ mkDerivation { testHaskellDepends = [ base parsec tasty tasty-hunit text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/jose-jwt.nix b/pkgs/jose-jwt.nix index 1d28702e9fdb17f43bbe2c66c3be399033bbaff8..b3c23ce9535f7e5c12f6f3c71225d6fc2e6cd69d 100644 --- a/pkgs/jose-jwt.nix +++ b/pkgs/jose-jwt.nix @@ -22,7 +22,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring criterion cryptonite ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/jose.nix b/pkgs/jose.nix index 792a1810145a47028cc9bebadd239eb7349dfa87..ae0f4db5613f236d8551329e68eff655f9f03197 100644 --- a/pkgs/jose.nix +++ b/pkgs/jose.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/js-chart.nix b/pkgs/js-chart.nix index 00670ec0f027a18af8acd74d29c7670377445ecc..b54f110315300f5ec548c7753ccf00a4faf1a811 100644 --- a/pkgs/js-chart.nix +++ b/pkgs/js-chart.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/js-dgtable.nix b/pkgs/js-dgtable.nix index 0413064ccbb87d49f6971b9478eaebb8c19e9b85..c560d78823b2356dad4192fce7edcb9e74d79b08 100644 --- a/pkgs/js-dgtable.nix +++ b/pkgs/js-dgtable.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/katip.nix b/pkgs/katip.nix index d9c35a1a92ac1e80b64299958ed700d855d60d60..5ee9228d357be55330f7a063fca366c44bd71665 100644 --- a/pkgs/katip.nix +++ b/pkgs/katip.nix @@ -33,7 +33,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/keys.nix b/pkgs/keys.nix index 7daf8b34a217de7d44b73bb5406b9598a574711e..92ad27c2fd41053f4165c2f40fb5917c73a7aee9 100644 --- a/pkgs/keys.nix +++ b/pkgs/keys.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/kvstore-effectful-cache.nix b/pkgs/kvstore-effectful-cache.nix index 2050fc5d8cdbab57528bf5f8e238be3d52731266..e2762cad2dad5ae288848aa564daf4abe7dedbd0 100644 --- a/pkgs/kvstore-effectful-cache.nix +++ b/pkgs/kvstore-effectful-cache.nix @@ -26,7 +26,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/kvstore-effectful-spec.nix b/pkgs/kvstore-effectful-spec.nix index c0db6b82322af51381d8f3a062aca675370b342b..bc127f2035110d85621f06e49a6167db0687b106 100644 --- a/pkgs/kvstore-effectful-spec.nix +++ b/pkgs/kvstore-effectful-spec.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/kvstore-effectful-statemap.nix b/pkgs/kvstore-effectful-statemap.nix index b62cf46022b495a0eb4b0b6176f5b2034990f84c..c4d5e69dba364a8000355e08686d892702e80193 100644 --- a/pkgs/kvstore-effectful-statemap.nix +++ b/pkgs/kvstore-effectful-statemap.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/kvstore-effectful.nix b/pkgs/kvstore-effectful.nix index 8aabe35dd72b189c8fbf5de6475375e4e50a9549..18fa9027b415a7a3a9cceaeca5c75446f5db5af8 100644 --- a/pkgs/kvstore-effectful.nix +++ b/pkgs/kvstore-effectful.nix @@ -15,7 +15,7 @@ mkDerivation { libraryHaskellDepends = [ base containers effectful ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/language-c.nix b/pkgs/language-c.nix index ae0642fbb20179bf97bb29276dba58b6a924ce93..a0fa1b26d8177dabcfd49fc4e00ac36e2921f597 100644 --- a/pkgs/language-c.nix +++ b/pkgs/language-c.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base directory filepath process ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lazy-search.nix b/pkgs/lazy-search.nix index 5bcda140c3f795cf6db7f1517d167080cf7ff02d..50e528a2dc489324f1d4a27e537d7392c996e459 100644 --- a/pkgs/lazy-search.nix +++ b/pkgs/lazy-search.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base size-based ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lazysmallcheck.nix b/pkgs/lazysmallcheck.nix index 56af56daa6f9105798558d8232858ce2190b0fb4..739a4a5398aff1554ec0e7125e1c1bb08ba48262 100644 --- a/pkgs/lazysmallcheck.nix +++ b/pkgs/lazysmallcheck.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lens-family-th.nix b/pkgs/lens-family-th.nix index e9fa9f2b0488145c285e79ce5228e504852cf72b..883709beb5d62606a87fd530c7e0ce662305a3fe 100644 --- a/pkgs/lens-family-th.nix +++ b/pkgs/lens-family-th.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base hspec template-haskell transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lens-family.nix b/pkgs/lens-family.nix index bcb8701b29498d7b3d7f9f077cc7a690c97a9f3a..83234e151000d0dcaf12fd8619cbca98bdb12c37 100644 --- a/pkgs/lens-family.nix +++ b/pkgs/lens-family.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/libsodium.nix b/pkgs/libsodium.nix index 45c3ac52c0fd274563ee8a4cf572482b7979779c..20baf9d591d8e8053b2c3052c93667fd75fcba29 100644 --- a/pkgs/libsodium.nix +++ b/pkgs/libsodium.nix @@ -18,7 +18,7 @@ mkDerivation { testToolDepends = [ c2hs ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/libsystemd-journal.nix b/pkgs/libsystemd-journal.nix index d5ac12fcd117d1daaa9e65a30f29eea690de3ca6..c9a45d48cd095d642c11659cafad44ec1487c7cd 100644 --- a/pkgs/libsystemd-journal.nix +++ b/pkgs/libsystemd-journal.nix @@ -17,7 +17,7 @@ mkDerivation { libraryPkgconfigDepends = [ systemd ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lift-type.nix b/pkgs/lift-type.nix index 314d012a46605ab8329a58f08fd6615a1a7919bb..58c49521fd2f3989ac626747df6271eb207066ab 100644 --- a/pkgs/lift-type.nix +++ b/pkgs/lift-type.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base template-haskell ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/linear-base.nix b/pkgs/linear-base.nix index 889b583bcbd1cc6089ff3356c53b011bce810c14..6fcfac662c2575b88e87bc6d17ee094462cf49cd 100644 --- a/pkgs/linear-base.nix +++ b/pkgs/linear-base.nix @@ -27,7 +27,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/linear-generics.nix b/pkgs/linear-generics.nix index 82065fdc60cc7a597f21f24ac13858321792821e..e2c6762226a5e0596af18c26463d3fff90c6d7c6 100644 --- a/pkgs/linear-generics.nix +++ b/pkgs/linear-generics.nix @@ -15,7 +15,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/linear.nix b/pkgs/linear.nix index a3a3c777143f4628645b6e020b0509abfd00265a..0013be748e74e9c845e30ab2d83ec423d64e0dd9 100644 --- a/pkgs/linear.nix +++ b/pkgs/linear.nix @@ -27,7 +27,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/list-t.nix b/pkgs/list-t.nix index 91be156cce259b58f3a8ffb5d71e85a45760d090..d76a7a67874bbc6404f6782b92a3e40b95b80758 100644 --- a/pkgs/list-t.nix +++ b/pkgs/list-t.nix @@ -15,7 +15,7 @@ mkDerivation { testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/list-transformer.nix b/pkgs/list-transformer.nix index 93fc6092872b05457953cfcd44a94e542149248d..b09bf47bb6cc290818a0ff7fb7105641a2d256a0 100644 --- a/pkgs/list-transformer.nix +++ b/pkgs/list-transformer.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base doctest ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lockfree-queue.nix b/pkgs/lockfree-queue.nix index e8e659f1dc63ca8c0bac5fcc3defd684f269d714..7acfc20514c8a237ee89acd1287b31b6cdf380d4 100644 --- a/pkgs/lockfree-queue.nix +++ b/pkgs/lockfree-queue.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/log-base.nix b/pkgs/log-base.nix index 9e07d15af072b8306d0df086e1aaff852ba938a3..f8c0cd046b41c96999ad2b61764f282f2c4cb647 100644 --- a/pkgs/log-base.nix +++ b/pkgs/log-base.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/log-effectful.nix b/pkgs/log-effectful.nix index 82ca61aa8ff09fdd2eaea95a6bcfaf293d733449..8bca3ec9edbc77c6634e3c62c710e47c1557be37 100644 --- a/pkgs/log-effectful.nix +++ b/pkgs/log-effectful.nix @@ -17,7 +17,7 @@ mkDerivation { testHaskellDepends = [ aeson base effectful-core log-base text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/loop.nix b/pkgs/loop.nix index 13fd8faeb906196f5f3d69a0ab1c0ab749e0e1bb..87c7226686633f39e9b702c750f950a7995a73aa 100644 --- a/pkgs/loop.nix +++ b/pkgs/loop.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lpeg.nix b/pkgs/lpeg.nix index d15d448c0e9f26e4596ce09a43a6a4c770e52217..57edf0d6e42c361cf5072fc538daf254c40cd705 100644 --- a/pkgs/lpeg.nix +++ b/pkgs/lpeg.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base lua tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lrucache.nix b/pkgs/lrucache.nix index ae4df5efbec7e049a2dbd416d3259de6c765555b..ed99872a57fd3ba20a394f24de17f42b8ef9b96b 100644 --- a/pkgs/lrucache.nix +++ b/pkgs/lrucache.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base containers contravariant ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lsp-test.nix b/pkgs/lsp-test.nix index 2e3aa16e8686a5c4f56fe2cda59b3d16b4fe1307..b94a96b7f009194a230a1f4b275022d986f90969 100644 --- a/pkgs/lsp-test.nix +++ b/pkgs/lsp-test.nix @@ -27,7 +27,7 @@ mkDerivation { benchmarkHaskellDepends = [ base extra lsp process ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lsp.nix b/pkgs/lsp.nix index 01fa2318c5c2a9dce1b8a9eca61c9684ba42c0cf..c67f75bb701331a7a9367ec400b1e5cddaebedfa 100644 --- a/pkgs/lsp.nix +++ b/pkgs/lsp.nix @@ -26,7 +26,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lua-arbitrary.nix b/pkgs/lua-arbitrary.nix index 100abfb848ec5beb089b2b73db2734ce340bc797..90abe1d13e0b593121c0982fb6bcf80d26435917 100644 --- a/pkgs/lua-arbitrary.nix +++ b/pkgs/lua-arbitrary.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base lua QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lua.nix b/pkgs/lua.nix index 9bf3cd904230a1467ccd8431d7bb8825b8f7f2a6..6f77116d63a6b846229777ea771ddba4a089d866 100644 --- a/pkgs/lua.nix +++ b/pkgs/lua.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lucid-alpine.nix b/pkgs/lucid-alpine.nix index 6c6c861f6ff7ecd0c70777fbc5eda191570ae4c9..177ede89430922a8348b0160b355af1c2394ad55 100644 --- a/pkgs/lucid-alpine.nix +++ b/pkgs/lucid-alpine.nix @@ -11,7 +11,7 @@ mkDerivation { testHaskellDepends = [ base lucid text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lucid-aria.nix b/pkgs/lucid-aria.nix index 9bd7d9c94f44291965a7e626cf918d26fd77da69..22e1acf315c4e1b062eed8de12f11ada6683df22 100644 --- a/pkgs/lucid-aria.nix +++ b/pkgs/lucid-aria.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base hspec HUnit lucid ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lucid-svg.nix b/pkgs/lucid-svg.nix index 1dfa2a5e3434e7ded558288422e73da6328f0493..c287f70aada912f9613050f7afcdbf09883d8dcd 100644 --- a/pkgs/lucid-svg.nix +++ b/pkgs/lucid-svg.nix @@ -12,7 +12,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lucid.nix b/pkgs/lucid.nix index 5b0366fcbd63b768dda0cdf5aa8f3c3f9ef91df2..7e6812bfc6c517302016011b5072d68bac23a3e2 100644 --- a/pkgs/lucid.nix +++ b/pkgs/lucid.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lukko.nix b/pkgs/lukko.nix index b6a3ff5e195da9efd4e7262404a352901349cf72..c26bcd5583094490a3e4a1d8ba82504b35a4c17d 100644 --- a/pkgs/lukko.nix +++ b/pkgs/lukko.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/lvar.nix b/pkgs/lvar.nix index 6cfbbc3a2e81705d1fc6afcdf49e3f17b5c6bdd5..fe349fd082abf80ee976b89d87b60c363a2e2e36 100644 --- a/pkgs/lvar.nix +++ b/pkgs/lvar.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base containers relude stm ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/markdown-unlit.nix b/pkgs/markdown-unlit.nix index b44c123ab48d1159ae3716a80a5a6f933bb33dac..9e47f529877c5c5dac81e92eb3a395381cfbc0ef 100644 --- a/pkgs/markdown-unlit.nix +++ b/pkgs/markdown-unlit.nix @@ -17,7 +17,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/markdown.nix b/pkgs/markdown.nix index d6144f469f58654e73c362eba1963e4f7ab5b89a..8502f7122cf2965eb1d1eaa158bdd4dea62e695d 100644 --- a/pkgs/markdown.nix +++ b/pkgs/markdown.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/markov-chain-usage-model.nix b/pkgs/markov-chain-usage-model.nix index 8e6b8009d1fca9fc3078171459bb84d670892b5d..743ef127f07d896d5ea35d060cad3c655d73701a 100644 --- a/pkgs/markov-chain-usage-model.nix +++ b/pkgs/markov-chain-usage-model.nix @@ -15,7 +15,7 @@ mkDerivation { testToolDepends = [ tasty-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/matrices.nix b/pkgs/matrices.nix index 6d68f2086dfce66c677a9cb870bde4fe1249e621..b018d6b436b8a93c99e6e6d80683ff06a2f3bbdd 100644 --- a/pkgs/matrices.nix +++ b/pkgs/matrices.nix @@ -15,7 +15,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion vector ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/matrix.nix b/pkgs/matrix.nix index 07ce43702e669608547116a56febb89160871e6d..113bdee1fbb7f210b2455461373c9b1a1de859a3 100644 --- a/pkgs/matrix.nix +++ b/pkgs/matrix.nix @@ -17,7 +17,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/mersenne-random-pure64.nix b/pkgs/mersenne-random-pure64.nix index 0e02e92af56d8a994132f0c9b84536ff7c21e7b4..e56f5cd0936a7a62bce3b469766e0ec8d1baaa4c 100644 --- a/pkgs/mersenne-random-pure64.nix +++ b/pkgs/mersenne-random-pure64.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base random time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/mfsolve.nix b/pkgs/mfsolve.nix index d052bc1e64ecde5d89874b314b37f00ca4dc9bc7..0051a9170996dec35e9d088b7e9ccf8f9e5bc69e 100644 --- a/pkgs/mfsolve.nix +++ b/pkgs/mfsolve.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/microlens-aeson.nix b/pkgs/microlens-aeson.nix index eadae8d97553b519b0e78fa1c2b0672b92707895..3cc6b8e452086152ef6295a75788c810d5b372a4 100644 --- a/pkgs/microlens-aeson.nix +++ b/pkgs/microlens-aeson.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/microlens-ghc.nix b/pkgs/microlens-ghc.nix index 27fe162b1f0a92b5ad9b99e03328fa81c6dea73d..6bdcae0f20b407f63270a67b0b282699829d9879 100644 --- a/pkgs/microlens-ghc.nix +++ b/pkgs/microlens-ghc.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/microlens-platform.nix b/pkgs/microlens-platform.nix index 3c9966a41411bb797caae3431ed09cb15b496835..2333a63355c77e6784c6cdc05acdb6fc069b1661 100644 --- a/pkgs/microlens-platform.nix +++ b/pkgs/microlens-platform.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/microspec.nix b/pkgs/microspec.nix index 039339f950705d4a6eed6e6bf5bb250f513175eb..1499dea053ffc85188a67def7aa632f1a8ef2108 100644 --- a/pkgs/microspec.nix +++ b/pkgs/microspec.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base QuickCheck time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/microstache.nix b/pkgs/microstache.nix index 7fe611989592da4932ed6cccfe55c2c956c5286e..29f1e878c65c2ebc78b4412a336cc664975dcab7 100644 --- a/pkgs/microstache.nix +++ b/pkgs/microstache.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/mime-mail.nix b/pkgs/mime-mail.nix index f5194bff84cf6b215d7797edfb4228debe913682..b9f280a060f983c92d85c6de61d4d986a59a753a 100644 --- a/pkgs/mime-mail.nix +++ b/pkgs/mime-mail.nix @@ -15,7 +15,7 @@ mkDerivation { testHaskellDepends = [ base blaze-builder bytestring hspec text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/minio-hs.nix b/pkgs/minio-hs.nix deleted file mode 100644 index c2c987d022db66630c50c63ad0e9718bb7a31d3e..0000000000000000000000000000000000000000 --- a/pkgs/minio-hs.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ mkDerivation, QuickCheck, aeson, base, base64-bytestring, binary -, bytestring, case-insensitive, conduit, conduit-extra, connection -, cryptonite, cryptonite-conduit, digest, directory, filepath -, http-client, http-client-tls, http-conduit, http-types, ini, lib -, memory, network-uri, raw-strings-qq, relude, resourcet, retry -, tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, text -, time, time-units, transformers, unliftio, unliftio-core -, unordered-containers, xml-conduit -}: -mkDerivation { - pname = "minio-hs"; - version = "1.7.0"; - sha256 = "8fc744198bbd9dc0794b608c0d904fe251cd8c5886013b2f6cf1f784f8159694"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - aeson base base64-bytestring binary bytestring case-insensitive - conduit conduit-extra connection cryptonite cryptonite-conduit - digest directory filepath http-client http-client-tls http-conduit - http-types ini memory network-uri relude resourcet retry text time - time-units transformers unliftio unliftio-core unordered-containers - xml-conduit - ]; - testHaskellDepends = [ - aeson base base64-bytestring binary bytestring case-insensitive - conduit conduit-extra connection cryptonite cryptonite-conduit - digest directory filepath http-client http-client-tls http-conduit - http-types ini memory network-uri QuickCheck raw-strings-qq relude - resourcet retry tasty tasty-hunit tasty-quickcheck tasty-smallcheck - text time time-units transformers unliftio unliftio-core - unordered-containers xml-conduit - ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/minio/minio-hs#readme"; - description = "A MinIO Haskell Library for Amazon S3 compatible cloud storage"; - license = lib.licenses.asl20; - broken = false; -} \ No newline at end of file diff --git a/pkgs/mmark.nix b/pkgs/mmark.nix index 78c65160f11ddd5426635a77b1448ce4b3eb8c9c..b8106e5f346897ed45f6730f4497da727c27e01a 100644 --- a/pkgs/mmark.nix +++ b/pkgs/mmark.nix @@ -27,7 +27,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion text weigh ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/mod.nix b/pkgs/mod.nix index 339f978650c1201248682fa421adf374dd1cc50e..ec57f55f718941eb309bbff491393ccd88aa18ee 100644 --- a/pkgs/mod.nix +++ b/pkgs/mod.nix @@ -19,7 +19,7 @@ mkDerivation { benchmarkHaskellDepends = [ base tasty-bench ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/modern-uri.nix b/pkgs/modern-uri.nix index 5e1f3b2dc7ddecc2f2491204a02254b62c7bf778..1504979632cdf634547be1e96a0d31056472dcde 100644 --- a/pkgs/modern-uri.nix +++ b/pkgs/modern-uri.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monad-logger-extras.nix b/pkgs/monad-logger-extras.nix deleted file mode 100644 index 9e4665fc5f331a07e17fdfa826246b8e44fc0c01..0000000000000000000000000000000000000000 --- a/pkgs/monad-logger-extras.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ mkDerivation, ansi-terminal, base, bytestring, hsyslog, lib -, monad-logger, mtl -}: -mkDerivation { - pname = "monad-logger-extras"; - version = "0.1.1.1"; - sha256 = "ab0c043973c5744bc88b37621301800be66bccd49e6458487a1046c3b1dabcff"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ - ansi-terminal base bytestring hsyslog monad-logger mtl - ]; - executableHaskellDepends = [ base monad-logger ]; - enableLibraryProfiling = true; - enableExecutableProfiling = true; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - homepage = "https://github.com/obsidiansystems/monad-logger-extras"; - description = "Utilities for composing loggers, coloring output, plus a few orphan instances"; - license = lib.licenses.bsd3; - broken = false; -} \ No newline at end of file diff --git a/pkgs/monad-logger.nix b/pkgs/monad-logger.nix index f88fb156aa64f029e1aec178fbbe8e2658b720fa..73020db2f1b1780b38f8311b5aaceaf831231022 100644 --- a/pkgs/monad-logger.nix +++ b/pkgs/monad-logger.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monad-loops.nix b/pkgs/monad-loops.nix index aa45a2dc955dd599973560636ea6720c510d44ee..7c88bdf82763347833e89a5ece4b6c7c8686cf5b 100644 --- a/pkgs/monad-loops.nix +++ b/pkgs/monad-loops.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monad-primitive.nix b/pkgs/monad-primitive.nix index 676ab498ad0ec2ca7f79fbf4b6cf77c1d64d2acd..2a718db4565e08dedae1b64a6706222dd4c3a19b 100644 --- a/pkgs/monad-primitive.nix +++ b/pkgs/monad-primitive.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base primitive transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monad-time-effectful.nix b/pkgs/monad-time-effectful.nix index e35df0e3a90e5035d20a525f6a365f72313000ce..43c1eef6410d2372fc9f8426b00a911152d07928 100644 --- a/pkgs/monad-time-effectful.nix +++ b/pkgs/monad-time-effectful.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base effectful-core monad-time time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monad-time.nix b/pkgs/monad-time.nix index faaaabb7b6302b4341496d3992fa8a1c4c9b625c..da08ca33ce321078daf6b25228d9bac5a90aef3f 100644 --- a/pkgs/monad-time.nix +++ b/pkgs/monad-time.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base mtl time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monadlist.nix b/pkgs/monadlist.nix index ff7d6cbd21390fd476fc6ef4862202f262fa8472..7723a584dd0c303fa2b906bc6476516ea934993b 100644 --- a/pkgs/monadlist.nix +++ b/pkgs/monadlist.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monads-tf.nix b/pkgs/monads-tf.nix index 69ada2fdceb65669d52c784ddfae406f8a347252..5335e09411073b1cf6142a162e91bb183536b917 100644 --- a/pkgs/monads-tf.nix +++ b/pkgs/monads-tf.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monoid-extras.nix b/pkgs/monoid-extras.nix index 0f77a6d44d5a878fa823a776a56e7b6695aeb713..5601321d1362454aec6d0ea83fa7cbae1da3d306 100644 --- a/pkgs/monoid-extras.nix +++ b/pkgs/monoid-extras.nix @@ -14,7 +14,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion semigroups ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/monoid-subclasses.nix b/pkgs/monoid-subclasses.nix index 61085d5c82856ba2223f866caa5a7dc5c1f65d6f..ad43ce56d3ef1d42d90b605315835e44824d49c1 100644 --- a/pkgs/monoid-subclasses.nix +++ b/pkgs/monoid-subclasses.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/mtl-prelude.nix b/pkgs/mtl-prelude.nix index 30be2fbd8bdd446f4a2f44441e15951891049c68..381e516df0d00737ba4874f9a9c703e0aefb8bd5 100644 --- a/pkgs/mtl-prelude.nix +++ b/pkgs/mtl-prelude.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base mtl transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/multiset.nix b/pkgs/multiset.nix index 39c3c1a485f6f6acf44b677bcce7b783b4d1c5c3..4683484e4b6d5205f787aeaf36813fc03be19bcc 100644 --- a/pkgs/multiset.nix +++ b/pkgs/multiset.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/mwc-random-monad.nix b/pkgs/mwc-random-monad.nix index e8332e3839d51509a9dcc876ca6878314b46b1d4..6f5d3bf3f9ff81a2d8c44bcb8dde351ffca55827 100644 --- a/pkgs/mwc-random-monad.nix +++ b/pkgs/mwc-random-monad.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/natural-arithmetic.nix b/pkgs/natural-arithmetic.nix index 9e9b2153e1b2775ca76865391db76c59811e2abc..46daa71e9283b2b22a1eb0fd61d5d9694d264cbf 100644 --- a/pkgs/natural-arithmetic.nix +++ b/pkgs/natural-arithmetic.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/natural-transformation.nix b/pkgs/natural-transformation.nix index 14e81f86c18dba2a3781d56b56a267ead33f4711..5c77c394132dd23cf32e9ec048c0432a086ac106 100644 --- a/pkgs/natural-transformation.nix +++ b/pkgs/natural-transformation.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/neat-interpolation.nix b/pkgs/neat-interpolation.nix index a699ec53eb8070b6d950ee6d7c7f51c5795f0bf3..9f793585816a3491b1e995cf3b9a5b3220b71b3f 100644 --- a/pkgs/neat-interpolation.nix +++ b/pkgs/neat-interpolation.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ rerebase tasty tasty-hunit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/net-mqtt.nix b/pkgs/net-mqtt.nix index e06d6906bb56b2606a94a682d5b135b2a4331575..8f39c884d5ee9fc48efe4e088ff3986261a8f6d6 100644 --- a/pkgs/net-mqtt.nix +++ b/pkgs/net-mqtt.nix @@ -33,7 +33,7 @@ mkDerivation { testToolDepends = [ tasty-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/network-conduit-tls.nix b/pkgs/network-conduit-tls.nix index bcd59a924f8e0c7bc7311311d285ccf089af5a59..b630b662d70aa146703732b7ad5ab6de1332a96f 100644 --- a/pkgs/network-conduit-tls.nix +++ b/pkgs/network-conduit-tls.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/network-info.nix b/pkgs/network-info.nix index 26fd5d93db318fe98da9bb044831176a435e429a..e7235543a0928eff15e2475de66df4354f539f53 100644 --- a/pkgs/network-info.nix +++ b/pkgs/network-info.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/network-ip.nix b/pkgs/network-ip.nix index d289fdb27889cc64a0e2cc74af3edbce112a1b8f..891edcb8420548c5478089e8b171752f12664724 100644 --- a/pkgs/network-ip.nix +++ b/pkgs/network-ip.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/newtype-generics.nix b/pkgs/newtype-generics.nix index 7f014fa3ac974491721b4c8fe067218eeb216130..9f6262d4aa782334735aa9c20af588efc2a12ef4 100644 --- a/pkgs/newtype-generics.nix +++ b/pkgs/newtype-generics.nix @@ -15,7 +15,7 @@ mkDerivation { benchmarkHaskellDepends = [ base gauge semigroups ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/newtype.nix b/pkgs/newtype.nix index abe1b3f0fb264439045364828c0193d5a8edf22b..bab3233f88b9753544b224491367b65abbb91746 100644 --- a/pkgs/newtype.nix +++ b/pkgs/newtype.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/nix-derivation.nix b/pkgs/nix-derivation.nix index 77b8980b490ebced86281ce72aed03dbfb7c98a5..c0fd783318aa05498a7bc75b21afb652ca0f0d15 100644 --- a/pkgs/nix-derivation.nix +++ b/pkgs/nix-derivation.nix @@ -20,7 +20,7 @@ mkDerivation { benchmarkHaskellDepends = [ attoparsec base criterion text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/non-negative.nix b/pkgs/non-negative.nix index 9b43fdcf9801ecb8bee617b045aeedd0ff09e042..376bfc4c3c2a6848cebb04e6bdcfe50de6a60eb8 100644 --- a/pkgs/non-negative.nix +++ b/pkgs/non-negative.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base QuickCheck semigroups utility-ht ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/nonempty-vector.nix b/pkgs/nonempty-vector.nix index a67b8b2183451aff0e3d588fe2dd6f464109d8b6..b0f55be5fb2f583e68779acbc7a34b8c69fa9f37 100644 --- a/pkgs/nonempty-vector.nix +++ b/pkgs/nonempty-vector.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/numeric-extras.nix b/pkgs/numeric-extras.nix index 096a39370449622a015888cf284dae97a7cc5e88..0b64308c9d65a92ece75e6f1625b36eb3500fb2b 100644 --- a/pkgs/numeric-extras.nix +++ b/pkgs/numeric-extras.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/numeric-prelude.nix b/pkgs/numeric-prelude.nix index 99e3ca489ed84c346756287ffa2d51d598b59ccb..65d80efbca1cda74d1251ffc1b94f4855f12ceb6 100644 --- a/pkgs/numeric-prelude.nix +++ b/pkgs/numeric-prelude.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/numtype-dk.nix b/pkgs/numtype-dk.nix index 8898283bcb1ef061a77e2ed2296c4147365c37da..84bfc16946416fac9feca191f50528092311035e 100644 --- a/pkgs/numtype-dk.nix +++ b/pkgs/numtype-dk.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/odd-jobs.nix b/pkgs/odd-jobs.nix index 6a92ed39f10b42abd2d3a519ded0305704a3ed98..f8f46c092fe377a3085b4c5d171a727c98787e47 100644 --- a/pkgs/odd-jobs.nix +++ b/pkgs/odd-jobs.nix @@ -52,7 +52,7 @@ mkDerivation { testToolDepends = [ tasty-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/one-liner.nix b/pkgs/one-liner.nix index a19ee1e08983e75e88b23f93beb495441660af38..25265b8de37d70d67ea98830070497e7ab4ccb6d 100644 --- a/pkgs/one-liner.nix +++ b/pkgs/one-liner.nix @@ -17,7 +17,7 @@ mkDerivation { testHaskellDepends = [ base contravariant HUnit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/openapi3.nix b/pkgs/openapi3.nix index fa8b0a88eefba9a17dd50fdacd2130911608fe69..7ccef6207afacbe83392517071ac5e04f2dd3283 100644 --- a/pkgs/openapi3.nix +++ b/pkgs/openapi3.nix @@ -33,7 +33,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/openssl-streams.nix b/pkgs/openssl-streams.nix index 6772500d9aa47db6ed62af0d13b327b93a834b32..9e54bf9ba144fd53daff794e80aeca3404e8f3b5 100644 --- a/pkgs/openssl-streams.nix +++ b/pkgs/openssl-streams.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/opentelemetry.nix b/pkgs/opentelemetry.nix index 7f309bb3286d171eeac35cae1b95b94253b4e2a6..f0a0e9d95fd6414a73087fdd620903be71d2f48d 100644 --- a/pkgs/opentelemetry.nix +++ b/pkgs/opentelemetry.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/operational.nix b/pkgs/operational.nix index 57f505f2c6f6542996c24f30d5a017e0079f3573..4fca6dcc03fde26c0dc97f4693345de9941c5355 100644 --- a/pkgs/operational.nix +++ b/pkgs/operational.nix @@ -10,7 +10,7 @@ mkDerivation { executableHaskellDepends = [ base mtl random ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/optics-core.nix b/pkgs/optics-core.nix index f3d6961268d6a05dd675559e3dde2b21d7248c4e..9cb17a7eed137a6bbba9fa825e9854f0df7e2778 100644 --- a/pkgs/optics-core.nix +++ b/pkgs/optics-core.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/optics-extra.nix b/pkgs/optics-extra.nix index 2337ee9916420edad4fa7b094229686eff6b49d7..91850f7f71997cb27713e13bdb6d6787dd3df49a 100644 --- a/pkgs/optics-extra.nix +++ b/pkgs/optics-extra.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/optics-th.nix b/pkgs/optics-th.nix index 2cfb3836b928dac8ade48d491b74729eaa9f554c..c0b484333fa6d0c07c08aa99fd61fa57980f38a2 100644 --- a/pkgs/optics-th.nix +++ b/pkgs/optics-th.nix @@ -17,7 +17,7 @@ mkDerivation { testHaskellDepends = [ base optics-core tagged ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/optics.nix b/pkgs/optics.nix index 46fd083e78886f0a1e8a1a06910fa28d2d079380..449fb744f96151d1ea3bf9fc028be8096b431f23 100644 --- a/pkgs/optics.nix +++ b/pkgs/optics.nix @@ -26,7 +26,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/optparse-generic.nix b/pkgs/optparse-generic.nix index 4fa625b866dee3ba174080c04fe4851e7a23a36a..73e312b61a18d1267625ba5237c66e0d30ef0d08 100644 --- a/pkgs/optparse-generic.nix +++ b/pkgs/optparse-generic.nix @@ -15,7 +15,7 @@ mkDerivation { executableHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/optparse-simple.nix b/pkgs/optparse-simple.nix index 77f8e343ca84958edf00f435c8fce0bb217e90d5..a4af120d32ade1c40cccd79f8514b0a2c9c95f0c 100644 --- a/pkgs/optparse-simple.nix +++ b/pkgs/optparse-simple.nix @@ -15,7 +15,7 @@ mkDerivation { testHaskellDepends = [ base bytestring directory ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ordered-containers.nix b/pkgs/ordered-containers.nix index cbb215b8767aaf2bd1c2f05985cdf8a06b20e89d..8959f707fed075457376f55aec0c84f433839312 100644 --- a/pkgs/ordered-containers.nix +++ b/pkgs/ordered-containers.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base containers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pager.nix b/pkgs/pager.nix index 5c7a8c6d23c730e92c5f2b8594c8fe20b3c10507..0277aa6a052d89b07e3df7e362ad2e8a57c5264e 100644 --- a/pkgs/pager.nix +++ b/pkgs/pager.nix @@ -15,7 +15,7 @@ mkDerivation { executableHaskellDepends = [ base bytestring conduit-extra text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pandoc-lua-marshal.nix b/pkgs/pandoc-lua-marshal.nix index f47006c7cfe701d07beab548a53842fa1f527f72..6e8adbaa0850584dd694a4fc924d47e4c4a78377 100644 --- a/pkgs/pandoc-lua-marshal.nix +++ b/pkgs/pandoc-lua-marshal.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pandoc-types.nix b/pkgs/pandoc-types.nix index d268135b8747019f8aeb1781abc3fbaa8b5281ed..44f41765a1927ccd92796a516b5a43cfbb295400 100644 --- a/pkgs/pandoc-types.nix +++ b/pkgs/pandoc-types.nix @@ -22,7 +22,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/parsec-numbers.nix b/pkgs/parsec-numbers.nix index ea9cce03f32cd0a4884851ca976b81af4c8993f3..24f3c4837ca0a44f8683e4117a3eb28e0e50e183 100644 --- a/pkgs/parsec-numbers.nix +++ b/pkgs/parsec-numbers.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base parsec ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/parsec1.nix b/pkgs/parsec1.nix index 1d40048920ea0e2385613dbbe424e9f95b353830..51879df8dd927a0d4e43349c97b0dec4abb2ccc5 100644 --- a/pkgs/parsec1.nix +++ b/pkgs/parsec1.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/parser-combinators.nix b/pkgs/parser-combinators.nix index ae187898a86f5925e76566de418f532409f86e2b..aeb1924ffb5ed680a231075c1797dfe8806f4c8b 100644 --- a/pkgs/parser-combinators.nix +++ b/pkgs/parser-combinators.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/parsers-megaparsec.nix b/pkgs/parsers-megaparsec.nix index a3459e671315d5f78749b40f4145df1a9392494a..4edfa233b6a93b6832e5cb289182aebb65ad1719 100644 --- a/pkgs/parsers-megaparsec.nix +++ b/pkgs/parsers-megaparsec.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/partial-order.nix b/pkgs/partial-order.nix index 66293b1eb2891eb3b49c40630194f6dd2ae94dac..9a3909e4df028e7320fd0fc68b2735f6c2947d1b 100644 --- a/pkgs/partial-order.nix +++ b/pkgs/partial-order.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/password-types.nix b/pkgs/password-types.nix index 4a1c4ac9278dc34508ae28232ec233497739bb1f..5c4657c604aec12731fab4d7c072492310a63c45 100644 --- a/pkgs/password-types.nix +++ b/pkgs/password-types.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/password.nix b/pkgs/password.nix index 50a5c8450a5aef325e07a5e63f2fcfc43f4821b4..4c456008f7f3678f26376fbcd36fa78f6763fee6 100644 --- a/pkgs/password.nix +++ b/pkgs/password.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/path-pieces.nix b/pkgs/path-pieces.nix index dc93c5252299b78f2b6970d7acfff93ee79d3cf4..f11bf43e45170fa3adec2fe6ad899c5bb1f58e24 100644 --- a/pkgs/path-pieces.nix +++ b/pkgs/path-pieces.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base hspec HUnit QuickCheck text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pcg-random.nix b/pkgs/pcg-random.nix index 07a3038fc1027a0bac2c2afdc73cee28fd5fbef1..c16f960e172eabf27b6328678629762dbd39320f 100644 --- a/pkgs/pcg-random.nix +++ b/pkgs/pcg-random.nix @@ -15,7 +15,7 @@ mkDerivation { testHaskellDepends = [ base doctest ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pcre-heavy.nix b/pkgs/pcre-heavy.nix index 55fc3ba3aead8120f0883afc385a52375d60f5b4..bc3afdb41dd579d131e06fb224f58650321d6794 100644 --- a/pkgs/pcre-heavy.nix +++ b/pkgs/pcre-heavy.nix @@ -17,7 +17,7 @@ mkDerivation { testHaskellDepends = [ base doctest Glob ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pcre2.nix b/pkgs/pcre2.nix index a5cde087ba507562c0ba7778441a6d026617d401..3f0723132b2046740245073224d29056697482fe 100644 --- a/pkgs/pcre2.nix +++ b/pkgs/pcre2.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/persistent-postgresql.nix b/pkgs/persistent-postgresql.nix index 1a7e4c20bc1a45220461ceae779956f4cc8e9b6e..22904e603453c634ad512d5c50246c3f199f8992 100644 --- a/pkgs/persistent-postgresql.nix +++ b/pkgs/persistent-postgresql.nix @@ -29,7 +29,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/persistent-qq.nix b/pkgs/persistent-qq.nix index e8c75176a972c3d4b62e3fb8556ff443cf8c5ac5..fdf4c6e94d0421bade4ef47e6b16c4cc9decf9b0 100644 --- a/pkgs/persistent-qq.nix +++ b/pkgs/persistent-qq.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/persistent-sqlite.nix b/pkgs/persistent-sqlite.nix index 8d12ba012d8f95d81b7832de8c35d25f9c373a8b..8000ae83e25b435d287cc0beebf7f740e11de914 100644 --- a/pkgs/persistent-sqlite.nix +++ b/pkgs/persistent-sqlite.nix @@ -27,7 +27,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/persistent-test.nix b/pkgs/persistent-test.nix index c42f71b5a9174bc9bfb8c9059f162649f2d6fba4..5372a49fa7b04e6e1d8454c99838c514e785da48 100644 --- a/pkgs/persistent-test.nix +++ b/pkgs/persistent-test.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/persistent.nix b/pkgs/persistent.nix index f99372dd186956560411eab89ac06cc12f909e35..f566889df01393edad0630f8da816ddb5c65d0d9 100644 --- a/pkgs/persistent.nix +++ b/pkgs/persistent.nix @@ -35,7 +35,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pg-entity.nix b/pkgs/pg-entity.nix index ae0dcb89f4a8a4078fbaf3d7f832d37c85d44aa5..b060aab8c00d084a857f32f05e9688ccfcda8b79 100644 --- a/pkgs/pg-entity.nix +++ b/pkgs/pg-entity.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pg-transact-effectful.nix b/pkgs/pg-transact-effectful.nix index 1c80d498bde6b7f9b2f4e1fa02d546c49f6d6e97..5ac7bb00798145f1411ffb5ae2b68a612e8fc515 100644 --- a/pkgs/pg-transact-effectful.nix +++ b/pkgs/pg-transact-effectful.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pg-transact.nix b/pkgs/pg-transact.nix index f0d3de992e3bb1b84a630ce96fdd1d497743ca49..2a95593e4f5a68eed9f1f01d1e52f15107053da6 100644 --- a/pkgs/pg-transact.nix +++ b/pkgs/pg-transact.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pipes-safe.nix b/pkgs/pipes-safe.nix index a1544b2c808f4a5b657ce41301f465a551a7ac21..eb76bcf41349ad70c6b1ecb6d5e20f652644483d 100644 --- a/pkgs/pipes-safe.nix +++ b/pkgs/pipes-safe.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pipes.nix b/pkgs/pipes.nix index 8840af36339f61dbb08cf48eded265e9be3b2481..f49dd87b727dd95fc243f2f06f16722e89b2719b 100644 --- a/pkgs/pipes.nix +++ b/pkgs/pipes.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pointed.nix b/pkgs/pointed.nix index 79b5a8a791afee80ef8fde48a310ad0f302d3198..bfd98e464f1d7745a8f0785b083254f46b236e20 100644 --- a/pkgs/pointed.nix +++ b/pkgs/pointed.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polyparse.nix b/pkgs/polyparse.nix index 448cdf161f21ad1489e289f6fc61aab3da7894ae..930e3d8e0204832193df3b657d31d7306aca65fb 100644 --- a/pkgs/polyparse.nix +++ b/pkgs/polyparse.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base bytestring text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-extra.nix b/pkgs/polysemy-extra.nix index 233421915cff42012b01bf240d2173bf2952c1f0..faecfcca7ec239fcd4bfcab9bee2cd06fc60e677 100644 --- a/pkgs/polysemy-extra.nix +++ b/pkgs/polysemy-extra.nix @@ -12,7 +12,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-kvstore.nix b/pkgs/polysemy-kvstore.nix index b3152dcfd384f4fd3d06db6548f34946b1267cf5..7fe779ce04bf291e5e30b81c601d0a287fc92e6c 100644 --- a/pkgs/polysemy-kvstore.nix +++ b/pkgs/polysemy-kvstore.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base containers polysemy ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-methodology.nix b/pkgs/polysemy-methodology.nix index 2bf56b2759e96c96e53cd4d9ecb9b02b9ca385bd..a1a329f9ba355f340ba29ed79d0219539564c7b7 100644 --- a/pkgs/polysemy-methodology.nix +++ b/pkgs/polysemy-methodology.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-path.nix b/pkgs/polysemy-path.nix index 4c6c695debfd9fc6f551d105c60cbf53d07c71b5..9d45481acf5e927c9aceb791f3f5ef93e10ffbd7 100644 --- a/pkgs/polysemy-path.nix +++ b/pkgs/polysemy-path.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base path polysemy polysemy-extra ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-plugin.nix b/pkgs/polysemy-plugin.nix index 946bb66ebbb3096488863a0cc7fe37438ce6be12..a37f04e2ba9dfb61da49e23e17efcd394f729aef 100644 --- a/pkgs/polysemy-plugin.nix +++ b/pkgs/polysemy-plugin.nix @@ -22,7 +22,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-several.nix b/pkgs/polysemy-several.nix index 0385c0102636cfb9f98c88be38b26bfdf7cadf1a..f562b09fefd6c64a5b9ecff5d1f1f7ee87ed28ef 100644 --- a/pkgs/polysemy-several.nix +++ b/pkgs/polysemy-several.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base polysemy ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-test.nix b/pkgs/polysemy-test.nix index 068b257a4c44d6ac43158c102246f376689c8a77..f464da4a2006fe554434ebbfe1d7c4f74b4ea9b3 100644 --- a/pkgs/polysemy-test.nix +++ b/pkgs/polysemy-test.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-time.nix b/pkgs/polysemy-time.nix index c568b2056dc481d39ae8aa5703cebfeb01644ccb..bdbb707d9b25bcdd504df99853067f7889a9bb1c 100644 --- a/pkgs/polysemy-time.nix +++ b/pkgs/polysemy-time.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-vinyl.nix b/pkgs/polysemy-vinyl.nix index 000b65a4b76c5d517535ac01c1128d54c66bd6b9..7585b1f3f88c5b15762c6ead44fd88ec12dc3ebe 100644 --- a/pkgs/polysemy-vinyl.nix +++ b/pkgs/polysemy-vinyl.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy-zoo.nix b/pkgs/polysemy-zoo.nix index e1f7c33ec3d2ed660446e4a124bee74cc043abe2..5685cb47ef037b6ab90ab046fd5c2dd54a838afd 100644 --- a/pkgs/polysemy-zoo.nix +++ b/pkgs/polysemy-zoo.nix @@ -23,7 +23,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/polysemy.nix b/pkgs/polysemy.nix index 4566fa993cf91858a6be133d1b6192da209de990..84a5dad06bafc2fbfcf176885998727aa9b9756a 100644 --- a/pkgs/polysemy.nix +++ b/pkgs/polysemy.nix @@ -23,7 +23,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/poolboy.nix b/pkgs/poolboy.nix index 8f19a66ad2f2701385e779b35d2ccb39c5972e08..203d064428ae6fd00f8415da8b90955afb3c5fb2 100644 --- a/pkgs/poolboy.nix +++ b/pkgs/poolboy.nix @@ -11,7 +11,7 @@ mkDerivation { testHaskellDepends = [ base hspec hspec-core ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/port-utils.nix b/pkgs/port-utils.nix index 463ee0a6e887e345a0e1832ff74a5ac2ed213926..4218b510372a0337cafd01895d1f346d365a159e 100644 --- a/pkgs/port-utils.nix +++ b/pkgs/port-utils.nix @@ -11,7 +11,7 @@ mkDerivation { testHaskellDepends = [ async base hspec network stm transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/postgres-options.nix b/pkgs/postgres-options.nix index 4b8ea38643f842ef5c4c82948291b0b83311ed3a..0e4025feb20cfee909d27e6803ab4d2be3ae48cf 100644 --- a/pkgs/postgres-options.nix +++ b/pkgs/postgres-options.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base hspec ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/postgresql-binary.nix b/pkgs/postgresql-binary.nix index cc04463a39137106ecbc32b0bcdc4727085892dd..1f122eeea87c8c4db3e40b422758c73f55d36fdb 100644 --- a/pkgs/postgresql-binary.nix +++ b/pkgs/postgresql-binary.nix @@ -23,7 +23,7 @@ mkDerivation { benchmarkHaskellDepends = [ criterion rerebase ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/postgresql-libpq.nix b/pkgs/postgresql-libpq.nix index daabc8d8f7b4ef18cdcfb750fca350c4b7d60824..7338bcab99ddb9477866f51cb0bb4b1deb32b687 100644 --- a/pkgs/postgresql-libpq.nix +++ b/pkgs/postgresql-libpq.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base bytestring ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/postgresql-migration.nix b/pkgs/postgresql-migration.nix index 8cfe33c7387f7002e6649f0d5c0606c2692e0350..6f25e65b126b3d9f4bdff8fdf1461c4ee1fe3f59 100644 --- a/pkgs/postgresql-migration.nix +++ b/pkgs/postgresql-migration.nix @@ -21,7 +21,7 @@ mkDerivation { testHaskellDepends = [ base bytestring hspec postgresql-simple ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/postgresql-simple-migration.nix b/pkgs/postgresql-simple-migration.nix index 58b3bd4ec06fa7a610290b9958d97071c4a69f5f..b6f218b9035809692a65c0ae84ee69aa9c4112a8 100644 --- a/pkgs/postgresql-simple-migration.nix +++ b/pkgs/postgresql-simple-migration.nix @@ -21,7 +21,7 @@ mkDerivation { testHaskellDepends = [ base bytestring hspec postgresql-simple ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/postgresql-simple.nix b/pkgs/postgresql-simple.nix index 0cf9cf95a43b2e9c5dc1ff80320f1a465ddb53a4..b723fa01aa73623859a0970fbe4973842059e412 100644 --- a/pkgs/postgresql-simple.nix +++ b/pkgs/postgresql-simple.nix @@ -25,7 +25,7 @@ mkDerivation { benchmarkHaskellDepends = [ base vector ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/postgresql-syntax.nix b/pkgs/postgresql-syntax.nix index 3ee5be7b513c42fa665ba3d823511692b5abca0e..89b55697d0934181db7030dd981036e515d9e69c 100644 --- a/pkgs/postgresql-syntax.nix +++ b/pkgs/postgresql-syntax.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pqueue.nix b/pkgs/pqueue.nix index ed0c3fcaeb3d9d7b9a660c36bffc7854e261a4ee..56346d4cd4f0e87062ddd7f2b3e0d6a592525d75 100644 --- a/pkgs/pqueue.nix +++ b/pkgs/pqueue.nix @@ -17,7 +17,7 @@ mkDerivation { benchmarkHaskellDepends = [ base deepseq random tasty-bench ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/pretty-relative-time.nix b/pkgs/pretty-relative-time.nix index a7aa55208bbf7166bdad9c4a77d20777ce9397b2..d90b8962249fef38ad1352cfefceb883b240bdb7 100644 --- a/pkgs/pretty-relative-time.nix +++ b/pkgs/pretty-relative-time.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/primes.nix b/pkgs/primes.nix index c0543565c5c63660a6b7e37feeea452ef633012c..8022ac30c4fda17971619f0fee953be1c41a4392 100644 --- a/pkgs/primes.nix +++ b/pkgs/primes.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/primitive-addr.nix b/pkgs/primitive-addr.nix index 1ff902fe2d49a79fee8420f41cfbd0526b8f436a..779278ebd18ff428221257e9cbaf4514cfd18493 100644 --- a/pkgs/primitive-addr.nix +++ b/pkgs/primitive-addr.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base primitive ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/primitive-extras.nix b/pkgs/primitive-extras.nix index 22c3ac3bcc818c6deb80556c932140a05eb20b1a..b3cdeb64d43a875c12cbd496c595d52357c8dc7b 100644 --- a/pkgs/primitive-extras.nix +++ b/pkgs/primitive-extras.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/primitive-offset.nix b/pkgs/primitive-offset.nix index 895be38390397b8e03377b2075dab5d910d443bc..4235044b9675875e7865102564344362dfed7c88 100644 --- a/pkgs/primitive-offset.nix +++ b/pkgs/primitive-offset.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base primitive ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/primitive-unlifted.nix b/pkgs/primitive-unlifted.nix index 17d20c63abcdbea51883344c4b25cd351b7be8fb..baf5140a5bc0edabfc7d0f9019c2899202547fbe 100644 --- a/pkgs/primitive-unlifted.nix +++ b/pkgs/primitive-unlifted.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/primitive.nix b/pkgs/primitive.nix index 1c0240ab7071a4d89917b3f8901507eb3aece076..c27af7d4dd3c372ee8f948d60c4f304993589ca7 100644 --- a/pkgs/primitive.nix +++ b/pkgs/primitive.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/prometheus-client.nix b/pkgs/prometheus-client.nix index 3166ba4c661f4d0216a96f93c9bfe0bf4b2f14d7..e298505c82aafa696e8310759874e0ed3846e5c8 100644 --- a/pkgs/prometheus-client.nix +++ b/pkgs/prometheus-client.nix @@ -26,7 +26,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/prometheus-metrics-ghc.nix b/pkgs/prometheus-metrics-ghc.nix index 875ecf0531f1b60ac7e470fc2cc4f056ae48ce58..ca51e9e6950886e45cc2eb64d83c020bbdae9985 100644 --- a/pkgs/prometheus-metrics-ghc.nix +++ b/pkgs/prometheus-metrics-ghc.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base doctest prometheus-client ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/prometheus-proc.nix b/pkgs/prometheus-proc.nix index 6e8f300b7030ec5eddd20d18fda24035d7c94cf5..98295f86c3dc68bd4abb64b85958b57de2dbf1d7 100644 --- a/pkgs/prometheus-proc.nix +++ b/pkgs/prometheus-proc.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/proteaaudio-sdl.nix b/pkgs/proteaaudio-sdl.nix index 0a62c5d53d1f757e7705e65ee9bdb17e4a299512..851df56a80495ce13205e3944f2ba5c5b0ec4314 100644 --- a/pkgs/proteaaudio-sdl.nix +++ b/pkgs/proteaaudio-sdl.nix @@ -14,7 +14,7 @@ mkDerivation { libraryToolDepends = [ c2hs ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/protolude.nix b/pkgs/protolude.nix index 0111c1522fb0ec38bdbfd4b8916f2d3eac653431..6b2219591bcde28635074f129783e4ee5e2cd8e5 100644 --- a/pkgs/protolude.nix +++ b/pkgs/protolude.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/quickcheck-arbitrary-adt.nix b/pkgs/quickcheck-arbitrary-adt.nix index 143a318dcabe64a6e206616163921bf2f9ca992f..852ee52e8b52cd4f1bb99b9a11be34a00b9a8c40 100644 --- a/pkgs/quickcheck-arbitrary-adt.nix +++ b/pkgs/quickcheck-arbitrary-adt.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/quickcheck-assertions.nix b/pkgs/quickcheck-assertions.nix index c399671872ca4b5b40e10f341ef3452b34817333..0bee62c11f6e97f64a6fe969d6c6c6ceb38c2001 100644 --- a/pkgs/quickcheck-assertions.nix +++ b/pkgs/quickcheck-assertions.nix @@ -11,7 +11,7 @@ mkDerivation { testHaskellDepends = [ base hspec ieee754 QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/quickcheck-text.nix b/pkgs/quickcheck-text.nix index 97c4727652ed24e6a99169c31bd2eb0c4f043c3d..6865ec0e33593b6f18d94924090d240634af925a 100644 --- a/pkgs/quickcheck-text.nix +++ b/pkgs/quickcheck-text.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base bytestring QuickCheck text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/quiet.nix b/pkgs/quiet.nix index 8b6f72fc0deeda5fc78d252681d9392b98356a11..7213b252f89d27ee548d1827b8cc3c1c496339a2 100644 --- a/pkgs/quiet.nix +++ b/pkgs/quiet.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/quote-quot.nix b/pkgs/quote-quot.nix index 73698e70a58a3b3ea0e13aada3e9f3724158166d..318ca3566c91d01450b5b3d8e6abaefaa63050f8 100644 --- a/pkgs/quote-quot.nix +++ b/pkgs/quote-quot.nix @@ -15,7 +15,7 @@ mkDerivation { benchmarkHaskellDepends = [ base tasty-bench template-haskell ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/random-bytestring.nix b/pkgs/random-bytestring.nix index a09767ce82c0a3beb062225611c679a058135f16..b174ee1ee1aa20b9c313f4cccd9f5f982dd9a528 100644 --- a/pkgs/random-bytestring.nix +++ b/pkgs/random-bytestring.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/random-fu.nix b/pkgs/random-fu.nix index a75bdaa257518476055e8e5f25507aa1fb2cbb52..68740e41270194c2cb396dc8ff291463a53cddee 100644 --- a/pkgs/random-fu.nix +++ b/pkgs/random-fu.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/raven-haskell.nix b/pkgs/raven-haskell.nix index 0eb50b5adc8ab06502d8c682709b82c8d876354e..e1d9e5e925b200e872e0371452946a5c5fe33eba 100644 --- a/pkgs/raven-haskell.nix +++ b/pkgs/raven-haskell.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/readable.nix b/pkgs/readable.nix index fc2800a62153606e34a1ddfed5ca9b0ec7a91f70..b04e2d7c4a4b68e852809c7c73e9778da72af254 100644 --- a/pkgs/readable.nix +++ b/pkgs/readable.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base bytestring text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/rebase.nix b/pkgs/rebase.nix index 6308b271365068b3f7753d3e1660db6657b14889..32dbc470833d2106dcddcd700191133e2b319806 100644 --- a/pkgs/rebase.nix +++ b/pkgs/rebase.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/recursion-schemes.nix b/pkgs/recursion-schemes.nix index 9d8c9075ca769bdc963bc3943c63d225b7d4408c..b5a09f030be693dcab93c405f487bf2e04318610 100644 --- a/pkgs/recursion-schemes.nix +++ b/pkgs/recursion-schemes.nix @@ -15,7 +15,7 @@ mkDerivation { testHaskellDepends = [ base HUnit template-haskell transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/ref-tf.nix b/pkgs/ref-tf.nix index fe51671798c39890420b897a0cdaa035ebcf39a2..001218c92663d4d4de1decc601152b5147fde148 100644 --- a/pkgs/ref-tf.nix +++ b/pkgs/ref-tf.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base stm transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/refact.nix b/pkgs/refact.nix index a39bac3cb028f0317f9e525330ac147fc3a897e7..9303b962f00480915c675de49b51340c9252891a 100644 --- a/pkgs/refact.nix +++ b/pkgs/refact.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/refined.nix b/pkgs/refined.nix index 55b99638b1b1dcb4d58279a0311525aa059ef83f..c8738070b6b895b63d960581ef493827c3b4058c 100644 --- a/pkgs/refined.nix +++ b/pkgs/refined.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/regex-applicative.nix b/pkgs/regex-applicative.nix index 1a465552081daad7a84f728acc545221eec1bd7c..784016b7dbd0088062c92a382ce0b1ff441f3973 100644 --- a/pkgs/regex-applicative.nix +++ b/pkgs/regex-applicative.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/regex-compat.nix b/pkgs/regex-compat.nix index faebfeb549b3eccd7a1bf9776ef866a0029f3995..459d1fc82976c528cf405aa3690c788538a492ba 100644 --- a/pkgs/regex-compat.nix +++ b/pkgs/regex-compat.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ array base regex-base regex-posix ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/regex-pcre-builtin.nix b/pkgs/regex-pcre-builtin.nix index 0aa0302a92e038b77e5bb718662b7de071b7bb3b..9f2b11a5209eb5a397cac916ca10a61088171f35 100644 --- a/pkgs/regex-pcre-builtin.nix +++ b/pkgs/regex-pcre-builtin.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/regex.nix b/pkgs/regex.nix index 95f9930fe53d7db93eeb041667bbbbce4dd810a2..6f9c476d511f8976d9c3d4b4f260e6d423e6b0ab 100644 --- a/pkgs/regex.nix +++ b/pkgs/regex.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/relude.nix b/pkgs/relude.nix index 23ec20ed0fe36ce8f69075a30783437d9c710ba3..6eb41e08da6d2cb08f8317df17cba4bcb6dac626 100644 --- a/pkgs/relude.nix +++ b/pkgs/relude.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/replace-megaparsec.nix b/pkgs/replace-megaparsec.nix index 5d12670bb59a129dcd32c58d12e3e603cf55404e..9c87138c32cad593cc2ea6e3ca81b3c436a80d53 100644 --- a/pkgs/replace-megaparsec.nix +++ b/pkgs/replace-megaparsec.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base bytestring hspec megaparsec text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/req.nix b/pkgs/req.nix index 156c4b4c6e0d19715125e699e8964b6db4e89d84..29cf805b7930e300edf73d5268a2683a3ec1c5b3 100644 --- a/pkgs/req.nix +++ b/pkgs/req.nix @@ -29,7 +29,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/rerebase.nix b/pkgs/rerebase.nix index 5bbaaccebb2e37ef6044d01fb6a142b91fbcaab6..880fcf299a38bd8e2d532b62f071ce5171c750cc 100644 --- a/pkgs/rerebase.nix +++ b/pkgs/rerebase.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ rebase ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/resolv.nix b/pkgs/resolv.nix index eeffbbad93cc9d38c9c138c7803759ce73e630e3..d9973e4ab98155ae7a3f523f12ae33691d150add 100644 --- a/pkgs/resolv.nix +++ b/pkgs/resolv.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/resource-pool.nix b/pkgs/resource-pool.nix index 1d620cdf273d9087272adfc87db2a908b100ca2b..82544a86245c5a71448a0c82bebbe03b95bb3367 100644 --- a/pkgs/resource-pool.nix +++ b/pkgs/resource-pool.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base hashable primitive time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/retrie.nix b/pkgs/retrie.nix index 166edae642e3314f9510451d26e0e4e17bbc6860..480376162d3ae6ca018f44e65928def1a741a811 100644 --- a/pkgs/retrie.nix +++ b/pkgs/retrie.nix @@ -29,7 +29,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/retry.nix b/pkgs/retry.nix index 76b203de2b5444c0bb68ad479229c4a206e4f2eb..b37fa4f648bbb5d6389331469ea30e9fd87c96ed 100644 --- a/pkgs/retry.nix +++ b/pkgs/retry.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/rope-utf16-splay.nix b/pkgs/rope-utf16-splay.nix index 360573ebbe77c05dc96c649c9e6f2467a5d5cc3a..4fad22a0b067d1d9fd5c3116fc8203dd81166efd 100644 --- a/pkgs/rope-utf16-splay.nix +++ b/pkgs/rope-utf16-splay.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/row-types.nix b/pkgs/row-types.nix index f391a8c4542a33a05e928ec2b247a9e6958bb29b..a0ce0542d4d3274066aea9924aa7eae6a8a875e9 100644 --- a/pkgs/row-types.nix +++ b/pkgs/row-types.nix @@ -18,7 +18,7 @@ mkDerivation { benchmarkHaskellDepends = [ base deepseq gauge ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/rvar.nix b/pkgs/rvar.nix index 4c5b37bd3cda04966dfbaa4151c4bb116dc966f2..cf6332ecbb53b3eabec9ddc6607aadde2d854e48 100644 --- a/pkgs/rvar.nix +++ b/pkgs/rvar.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/saltine.nix b/pkgs/saltine.nix index d71b9f8a31bd1e0cfdf0dc7ace318109c11325eb..427545c8566603c1552045e75353d64298552b72 100644 --- a/pkgs/saltine.nix +++ b/pkgs/saltine.nix @@ -23,7 +23,7 @@ mkDerivation { benchmarkSystemDepends = [ libsodium ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sandwich.nix b/pkgs/sandwich.nix index f948843777d6eb7523de2ea8635a1d9ef93cccf9..07e3f3d557c23bd68fcc851a7ec3d00d87dace4d 100644 --- a/pkgs/sandwich.nix +++ b/pkgs/sandwich.nix @@ -39,7 +39,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/say.nix b/pkgs/say.nix index e670ccfa2e5f00b57090aaa03a9f47edee258545..3ff45bb4d19f1b96f5bb66a4e248ddb5cb8d5c73 100644 --- a/pkgs/say.nix +++ b/pkgs/say.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/scotty.nix b/pkgs/scotty.nix index 8e97a77dff412c50855716267d1392c22ab966d1..dc7d5b5cf43b3efcd8b4a9a268455b4d1fee8a00 100644 --- a/pkgs/scotty.nix +++ b/pkgs/scotty.nix @@ -28,7 +28,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sdl2-gfx.nix b/pkgs/sdl2-gfx.nix index ef9d9217faf3206577de4506002b65f9641fc068..34b12c6cd9f0b0bbcead31fb720d28de44e2aee5 100644 --- a/pkgs/sdl2-gfx.nix +++ b/pkgs/sdl2-gfx.nix @@ -18,7 +18,7 @@ mkDerivation { executablePkgconfigDepends = [ SDL2 SDL2_gfx ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sdl2-image.nix b/pkgs/sdl2-image.nix index 45a4063ad09bed8a4d3cb4a287ffdeb93e93c64e..759f3f14ad63a327457713c35eb6fe721ef6debe 100644 --- a/pkgs/sdl2-image.nix +++ b/pkgs/sdl2-image.nix @@ -18,7 +18,7 @@ mkDerivation { executablePkgconfigDepends = [ SDL2 SDL2_image ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sdl2-mixer.nix b/pkgs/sdl2-mixer.nix index d60edd127fad7023507c7c2a9cd83b8d6bbb4b99..fdece280e39bea63f7fbfa6fc9939330e836d8fa 100644 --- a/pkgs/sdl2-mixer.nix +++ b/pkgs/sdl2-mixer.nix @@ -19,7 +19,7 @@ mkDerivation { executablePkgconfigDepends = [ SDL2_mixer ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sdl2-ttf.nix b/pkgs/sdl2-ttf.nix index 6756dc22263cec9fa8288804e61ec884e51c3e74..00079742297bb02b5e1fd20c1a71d6a475104e23 100644 --- a/pkgs/sdl2-ttf.nix +++ b/pkgs/sdl2-ttf.nix @@ -15,7 +15,7 @@ mkDerivation { libraryPkgconfigDepends = [ SDL2 SDL2_ttf ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sdl2.nix b/pkgs/sdl2.nix index 94148abd2898fede6c8cbf701403cf94e2b8e7a7..119d1b5628ad9d374d286638d627609b4bcea977 100644 --- a/pkgs/sdl2.nix +++ b/pkgs/sdl2.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base deepseq linear vector weigh ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/selective.nix b/pkgs/selective.nix index aa221187868761a81db36fb0579b002a715e84be..88b273b35ffa96f9660c8521ae2d068a4ae6f02a 100644 --- a/pkgs/selective.nix +++ b/pkgs/selective.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base containers QuickCheck transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/semver.nix b/pkgs/semver.nix index 43c316923152b32a3bea0c1325f233b8f602a39c..2a97c184430fae9a468d91b2becef14eb71c80ff 100644 --- a/pkgs/semver.nix +++ b/pkgs/semver.nix @@ -15,7 +15,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-auth-client.nix b/pkgs/servant-auth-client.nix index ab807ec276c36deee28cb9cbb73743e66afc3111..1f20097aae431b4393beab97e4bb62aeba5a77ec 100644 --- a/pkgs/servant-auth-client.nix +++ b/pkgs/servant-auth-client.nix @@ -24,7 +24,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-auth-server.nix b/pkgs/servant-auth-server.nix index 0f16e6d54d4b412a47bf80770167b6c4c602efa0..3b9bbf97771edbceebfa9c46c2c19bcd9b59b781 100644 --- a/pkgs/servant-auth-server.nix +++ b/pkgs/servant-auth-server.nix @@ -28,7 +28,7 @@ mkDerivation { testToolDepends = [ hspec-discover markdown-unlit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-auth.nix b/pkgs/servant-auth.nix index 769d0bc039481978a3e0100b2a563e294ebdae01..1710d294c4333dbc22c605c80f8274b688c0948b 100644 --- a/pkgs/servant-auth.nix +++ b/pkgs/servant-auth.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-blaze.nix b/pkgs/servant-blaze.nix index 2a0bce67f1235b007580e980b91719aefddedbbe..0d2e852c4c7efd4f4ffdcdebb9bb099d0a0e73a4 100644 --- a/pkgs/servant-blaze.nix +++ b/pkgs/servant-blaze.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base blaze-html servant-server wai warp ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-client-core.nix b/pkgs/servant-client-core.nix index d604592dda62ce5ca25413dedfa9dd36b62b45b0..01c53731db01a65d60c01bb0349f29ee794928c8 100644 --- a/pkgs/servant-client-core.nix +++ b/pkgs/servant-client-core.nix @@ -23,7 +23,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-client.nix b/pkgs/servant-client.nix index 1e3fda8e4bfcc09e3a06de90a94df5c6d2ad2086..a2ef346bdff4606cbb0ab8fc052b8d9afcb7d5c4 100644 --- a/pkgs/servant-client.nix +++ b/pkgs/servant-client.nix @@ -30,7 +30,7 @@ mkDerivation { testToolDepends = [ hspec-discover markdown-unlit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-docs.nix b/pkgs/servant-docs.nix index 90ab1e4c5195f36065c6936caa56dcc261cd5823..3d161b60a95bdc9df4191a092a6844b031bf477e 100644 --- a/pkgs/servant-docs.nix +++ b/pkgs/servant-docs.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-effectful.nix b/pkgs/servant-effectful.nix index 260e0aa626c8822dea75820cc0006512f491d88f..574a31ca556666ca19660193acd73c0b08ec2fe3 100644 --- a/pkgs/servant-effectful.nix +++ b/pkgs/servant-effectful.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-foreign.nix b/pkgs/servant-foreign.nix index 61821f8157bc744c1542ceef8c6732c6c6bc476f..5514e7d8ac5b8490ed427068f5bca1705a282082 100644 --- a/pkgs/servant-foreign.nix +++ b/pkgs/servant-foreign.nix @@ -17,7 +17,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-lucid.nix b/pkgs/servant-lucid.nix index 9868c146fbcbfb7f0be56aa03f35e72fe8161372..706e1bc519b441a879d1439da9b310108a75203d 100644 --- a/pkgs/servant-lucid.nix +++ b/pkgs/servant-lucid.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base lucid servant-server wai warp ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-multipart-api.nix b/pkgs/servant-multipart-api.nix index 78abfca700379e0197aa95f0083279d1e515da3b..448b7aea928fc96b4cb680f9696904589352c4e1 100644 --- a/pkgs/servant-multipart-api.nix +++ b/pkgs/servant-multipart-api.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-multipart.nix b/pkgs/servant-multipart.nix index 490699dc735ed3d8cde6468b79fac8873cfcacf0..d427f2319f17c5aa68f81a82de67f91f71296619 100644 --- a/pkgs/servant-multipart.nix +++ b/pkgs/servant-multipart.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-openapi3.nix b/pkgs/servant-openapi3.nix index aa5657a839226f6d1ceced1374cc906c61e53793..0d5d42a7b637b638bed0bbe2c14d32e81a3a8495 100644 --- a/pkgs/servant-openapi3.nix +++ b/pkgs/servant-openapi3.nix @@ -28,7 +28,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-server.nix b/pkgs/servant-server.nix index 6a49c80865dda4057475431104ed210dbe431f50..f1ff3ac1ce2abdccc8d694ef8599adb383bef374 100644 --- a/pkgs/servant-server.nix +++ b/pkgs/servant-server.nix @@ -35,7 +35,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-static-th.nix b/pkgs/servant-static-th.nix index d5ac9bd8fd12f918268eae3fd258e2452a3ba016..27df144e70b89e35cb64701b5e8bdf8eed1356be 100644 --- a/pkgs/servant-static-th.nix +++ b/pkgs/servant-static-th.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant-websockets.nix b/pkgs/servant-websockets.nix index 50f70cc1a709763cd3cd074a62d871df0aa59253..1cf68a731a0e75a4570a43ba06028cadd04f5d73 100644 --- a/pkgs/servant-websockets.nix +++ b/pkgs/servant-websockets.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/servant.nix b/pkgs/servant.nix index 4ed33a68ed0cc290056510fca1c6df9d5ff7b988..43d92965f043c6e54f8d45b5dd420c8fc0c30d9c 100644 --- a/pkgs/servant.nix +++ b/pkgs/servant.nix @@ -24,7 +24,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/setlocale.nix b/pkgs/setlocale.nix index fd29260eb0345b334c55e4c67c9b7270ec3e9022..f4cf950b6e470cddf4cc8b371e16000c86dd92aa 100644 --- a/pkgs/setlocale.nix +++ b/pkgs/setlocale.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/shake-bench.nix b/pkgs/shake-bench.nix index 428f2d8e71f0ff9dd6148c4c2caf0751f7dc8c59..5b346529d99265904929390f1df25e01aca494e6 100644 --- a/pkgs/shake-bench.nix +++ b/pkgs/shake-bench.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/shake.nix b/pkgs/shake.nix index 50bfb83bf1845191074f1f5005c6d69c2e390f0a..b2448e1b9afe82a55a4ba259482ce38fdf36c0b5 100644 --- a/pkgs/shake.nix +++ b/pkgs/shake.nix @@ -30,7 +30,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/shakespeare.nix b/pkgs/shakespeare.nix index 4ee81244ae9b6931edc34a6f38e0938cc482b7c4..c16805ccc597db6f6ac9580c32022b3aadbb098e 100644 --- a/pkgs/shakespeare.nix +++ b/pkgs/shakespeare.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/shelly.nix b/pkgs/shelly.nix index 6c53f75d4dc7b6dd11a0188499798410edabce36..f3a8b5764eeb5a2ff6d41c97c173a852701985ed 100644 --- a/pkgs/shelly.nix +++ b/pkgs/shelly.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/shh.nix b/pkgs/shh.nix index ae35d0759bfc93c7ee4b37d887fee3e821e210d7..ee6055d7d6c07a3d31b2bc143200637b9ceb808d 100644 --- a/pkgs/shh.nix +++ b/pkgs/shh.nix @@ -26,7 +26,7 @@ mkDerivation { testToolDepends = [ markdown-unlit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/should-not-typecheck.nix b/pkgs/should-not-typecheck.nix index 610c491b02d6ba6a64d92fc29637d4d276d95816..01856bf333c3eb1eea2eb9c800f9677a614dfa12 100644 --- a/pkgs/should-not-typecheck.nix +++ b/pkgs/should-not-typecheck.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/show-combinators.nix b/pkgs/show-combinators.nix index 0140a7209d3f5551489ae6732032e62fb0b0b134..b5abfb04ac88b9b4bc81d7a5e4e6a2ace0bb3514 100644 --- a/pkgs/show-combinators.nix +++ b/pkgs/show-combinators.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/singleton-bool.nix b/pkgs/singleton-bool.nix index d595e247c033b788df2a1ec04d96c09251f18485..d799a19bd388b47ac6b8419d03ddabf3e6b7e9e5 100644 --- a/pkgs/singleton-bool.nix +++ b/pkgs/singleton-bool.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base boring dec deepseq some ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/singletons.nix b/pkgs/singletons.nix index 5a1be02e62b4ea052ccb1490e25e0008891ba823..33596097334e195be3c1ebc073be790f2005b6df 100644 --- a/pkgs/singletons.nix +++ b/pkgs/singletons.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/size-based.nix b/pkgs/size-based.nix index acc33e2845bc0e3ffa7450ca9c0c3ed695c4b04d..0a669f06a65c320d429388f6686fead4e636b0a0 100644 --- a/pkgs/size-based.nix +++ b/pkgs/size-based.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/skylighting-core.nix b/pkgs/skylighting-core.nix index b68fa81958ef1d54b2fcaebf2345e1d5bdcba16c..77b1d1bea97cad537674d8177915fe41b4154d10 100644 --- a/pkgs/skylighting-core.nix +++ b/pkgs/skylighting-core.nix @@ -26,7 +26,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/skylighting-format-ansi.nix b/pkgs/skylighting-format-ansi.nix index 7f28874b3d6d431ee30997b7308214be606ce002..4faa2400d2c9df30000c4a494e38054493c152d7 100644 --- a/pkgs/skylighting-format-ansi.nix +++ b/pkgs/skylighting-format-ansi.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/skylighting-format-blaze-html.nix b/pkgs/skylighting-format-blaze-html.nix index ff76db6b9106d4ce74a9a156364a1e50a7c2449e..b5f0777355465bd317665d9b4a2fe4494e07cb6a 100644 --- a/pkgs/skylighting-format-blaze-html.nix +++ b/pkgs/skylighting-format-blaze-html.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/skylighting-format-context.nix b/pkgs/skylighting-format-context.nix index c83245974ecb85f7fd9ad109588909a56a227a3d..00441e36936e3108ed70272d79a517669c099138 100644 --- a/pkgs/skylighting-format-context.nix +++ b/pkgs/skylighting-format-context.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base containers skylighting-core text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/skylighting-format-latex.nix b/pkgs/skylighting-format-latex.nix index 749a55f3a62b30febf6138ef0dc692577e354092..6b4d95ebd3e5a8d906cbf83f05bc58908be640d8 100644 --- a/pkgs/skylighting-format-latex.nix +++ b/pkgs/skylighting-format-latex.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base containers skylighting-core text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/skylighting.nix b/pkgs/skylighting.nix index f42d94f1ac347965b24b924395cdddc12c7d9801..d0708576f91ff73077df2c56733ff371fc6b530a 100644 --- a/pkgs/skylighting.nix +++ b/pkgs/skylighting.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/slugify.nix b/pkgs/slugify.nix index de8fcc6340c0954fc385f528d42a485081d1d066..f0563363358c80629bc7b4e2ac7250c3fce20c42 100644 --- a/pkgs/slugify.nix +++ b/pkgs/slugify.nix @@ -13,7 +13,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/snap-core.nix b/pkgs/snap-core.nix index aadd8f5c0cd09a63091e763121214d9587bd68cd..6a3df5a3cd8034cf9dbbfcbf494fb7c308807e56 100644 --- a/pkgs/snap-core.nix +++ b/pkgs/snap-core.nix @@ -34,7 +34,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/snap-server.nix b/pkgs/snap-server.nix index 62633d2d6a9197362db64e65cc754e346fb35a4c..e9698e4d96087fca62a96017855baf383c649528 100644 --- a/pkgs/snap-server.nix +++ b/pkgs/snap-server.nix @@ -39,7 +39,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sop-core.nix b/pkgs/sop-core.nix index c96b779ce61d5077500fde5845ec6d78597ff4de..7a7e30a3083b2c2b88a39286cc8fdf2df6d2fbf3 100644 --- a/pkgs/sop-core.nix +++ b/pkgs/sop-core.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base deepseq ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sort.nix b/pkgs/sort.nix index 5dc77e43655e7454574f6ff4f403a8be7801bca7..1edf58ad9a69aa9d0a71b9775711c0a6c0f06c18 100644 --- a/pkgs/sort.nix +++ b/pkgs/sort.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sorted-list.nix b/pkgs/sorted-list.nix index de05708d9e514226e3704789951c3d2a01ee4b98..0dc5d3a6f503f076fd1de24e9929e572b4be12ff 100644 --- a/pkgs/sorted-list.nix +++ b/pkgs/sorted-list.nix @@ -11,7 +11,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/souffle-haskell.nix b/pkgs/souffle-haskell.nix index e6c6ff7f3002f13f09a12cb76bb218d963ba0efa..970ba085a2fbe1919b7080b178feee8aafccd287 100644 --- a/pkgs/souffle-haskell.nix +++ b/pkgs/souffle-haskell.nix @@ -20,7 +20,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion deepseq text vector ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sqlite-simple.nix b/pkgs/sqlite-simple.nix index c515cb84277b3e853d87971947c716b9269bc1ed..6ff609d1d858de244d4a0183cb35033cf15c8abd 100644 --- a/pkgs/sqlite-simple.nix +++ b/pkgs/sqlite-simple.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/statestack.nix b/pkgs/statestack.nix index 04ab4c5030d2c504ffbee9457798d36ee0e8db86..d68339a59392534329f46a81c84059caf375eba3 100644 --- a/pkgs/statestack.nix +++ b/pkgs/statestack.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base mtl transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/statistics-linreg.nix b/pkgs/statistics-linreg.nix index e947c91f1c1f27d70d83e351c86fa7c1b0ebd3dc..6513a9c88e6e6752d6f2977231fe9bc022141e35 100644 --- a/pkgs/statistics-linreg.nix +++ b/pkgs/statistics-linreg.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/statistics.nix b/pkgs/statistics.nix index 3615e76c181fa82ff9028f6fdbe842062f47bc68..a8c17e41942c3cd79dc944e7e29abcfb56ae9886 100644 --- a/pkgs/statistics.nix +++ b/pkgs/statistics.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/stm-chans.nix b/pkgs/stm-chans.nix index ff8dc589535ce3f5ae1adf2b4d67da3be10a6f13..506cceacfdd7ded7ddc972c20bc49fec14a8bc33 100644 --- a/pkgs/stm-chans.nix +++ b/pkgs/stm-chans.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base stm ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/stm-containers.nix b/pkgs/stm-containers.nix index 77bc2045020689a3eb350ebf1ca9af4d6167a4ab..7d9a5dfe1da77ea47fde0747a5ce451725e7de17 100644 --- a/pkgs/stm-containers.nix +++ b/pkgs/stm-containers.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/stm-hamt.nix b/pkgs/stm-hamt.nix index c3439daedccdf3d2a26c35e95d03ad2a7c5fbbd3..45a3aa72033d324c39387e494b60438fa621e0ef 100644 --- a/pkgs/stm-hamt.nix +++ b/pkgs/stm-hamt.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/streaming-binary.nix b/pkgs/streaming-binary.nix index b53f486fdb3553582f33cf8277bf2daeac133294..358c4b3fa9d538aea4c302e66f994869cb9a9f25 100644 --- a/pkgs/streaming-binary.nix +++ b/pkgs/streaming-binary.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/streaming-bytestring.nix b/pkgs/streaming-bytestring.nix index b582968b1df713fddb0608bb28b2c53a6889a248..beb6256974939ea8c1f4a6e8ac9b75469facc4a8 100644 --- a/pkgs/streaming-bytestring.nix +++ b/pkgs/streaming-bytestring.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/streaming.nix b/pkgs/streaming.nix index ea741ebb5d13bb45873c40a22b9b98f28b7244e1..68e6645e3ac3eb5c2cc59e97286829bf68efb50b 100644 --- a/pkgs/streaming.nix +++ b/pkgs/streaming.nix @@ -19,7 +19,7 @@ mkDerivation { testHaskellDepends = [ base hspec QuickCheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/streamly-core.nix b/pkgs/streamly-core.nix index a9ce0b7a4180c714ff808586c97f0c5cd850f848..606dec03219ba3740132c5f82de5d2b6f614a443 100644 --- a/pkgs/streamly-core.nix +++ b/pkgs/streamly-core.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/streamly.nix b/pkgs/streamly.nix index c76536b3a4a10e8964663a7e8e1d0d63b4497755..a93bf047b1cd923ca2564bd7dfd37a58a2152868 100644 --- a/pkgs/streamly.nix +++ b/pkgs/streamly.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/strict-list.nix b/pkgs/strict-list.nix index 41e9c9c2b2ae769d2e0a82aa64b91196757bf094..b17081856b5fc84e8eacf1b39973dc046eb3af2e 100644 --- a/pkgs/strict-list.nix +++ b/pkgs/strict-list.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ rerebase tasty tasty-quickcheck ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/string-conv.nix b/pkgs/string-conv.nix index 08503d37faf1114293d39696aa482ff2227b0f06..55078b24c41456a3153f8e6c596588b5e14a08e8 100644 --- a/pkgs/string-conv.nix +++ b/pkgs/string-conv.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/string-conversions.nix b/pkgs/string-conversions.nix index 67dfd03599b32699d010cffefe7a1d7b46ed7164..605b7175a5c5962cb9d42551a9c0d1849ac4ae30 100644 --- a/pkgs/string-conversions.nix +++ b/pkgs/string-conversions.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/string-interpolate.nix b/pkgs/string-interpolate.nix index f960c4aa0fc58434df1b89545153c68f114216b9..fea5cc7bf2bca331da70d92716cb69faf22d04c4 100644 --- a/pkgs/string-interpolate.nix +++ b/pkgs/string-interpolate.nix @@ -26,7 +26,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/stringsearch.nix b/pkgs/stringsearch.nix index 06086a43c986f3016e614ed7a6f95320516ce087..2ece9d52d0be77ccf9303c6f91c5f6cde7df256f 100644 --- a/pkgs/stringsearch.nix +++ b/pkgs/stringsearch.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ array base bytestring containers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/stripeapi.nix b/pkgs/stripeapi.nix index 13fff1974a3037007dd440f8d1aef8ea746cc8e2..c7529c84b1b08a3275a48b6b9e0e35985c85fcb3 100644 --- a/pkgs/stripeapi.nix +++ b/pkgs/stripeapi.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/sundown.nix b/pkgs/sundown.nix index 0db3bbee11040196141e17e673800c806cbce490..0473dd5e0d255059f41b7dbc34a3cb741ae763b4 100644 --- a/pkgs/sundown.nix +++ b/pkgs/sundown.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base bytestring text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/svg-builder.nix b/pkgs/svg-builder.nix index 7a3982f68bbac24f0684cf0c50843fc0dcc42381..7bfbe5f58d1b92615f0ecc432fe4d1b96c92a1a4 100644 --- a/pkgs/svg-builder.nix +++ b/pkgs/svg-builder.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/swagger2.nix b/pkgs/swagger2.nix index 5066f8b08a086b15cec4a3adc1a5815eb1fa005b..d575c1f53c9258d46f54659e44a3fd79ffc378d7 100644 --- a/pkgs/swagger2.nix +++ b/pkgs/swagger2.nix @@ -30,7 +30,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/system-fileio.nix b/pkgs/system-fileio.nix index 1591f29318de94f08c2cfa57a38ddfac9b841395..d0d90250b9dd2d7e1577aaee3683b4b796abdbb4 100644 --- a/pkgs/system-fileio.nix +++ b/pkgs/system-fileio.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/system-filepath.nix b/pkgs/system-filepath.nix index 556b8169b39e9937e455e0067f4d46d2fcd23862..90b709efc55b009fab72ae70e7114377e32ce238 100644 --- a/pkgs/system-filepath.nix +++ b/pkgs/system-filepath.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tagsoup.nix b/pkgs/tagsoup.nix index 2d4600857e98dadea9169099aab60ff77e94cb2c..75ebe330e20f68a9e5b87663946186641ac15ab9 100644 --- a/pkgs/tagsoup.nix +++ b/pkgs/tagsoup.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tasty-discover.nix b/pkgs/tasty-discover.nix index 1c65608d4790788dcbaecf409bfe2859001d7cd2..5425866b4a409153b4a38912f65712372a51bc7e 100644 --- a/pkgs/tasty-discover.nix +++ b/pkgs/tasty-discover.nix @@ -25,7 +25,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tasty-hslua.nix b/pkgs/tasty-hslua.nix index f7840ea669c9a49c6099ca4d5b2153312f95bfe5..65a046d3132fe7b2c766148d9c2664a6d2bca0d5 100644 --- a/pkgs/tasty-hslua.nix +++ b/pkgs/tasty-hslua.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tasty-hspec.nix b/pkgs/tasty-hspec.nix index db49d56591be97e6ab19ac291fdc4bbb2ad1e1e7..4a8f2d678fd9ce0229306462ce2d3195dcaca6cf 100644 --- a/pkgs/tasty-hspec.nix +++ b/pkgs/tasty-hspec.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tasty-lua.nix b/pkgs/tasty-lua.nix index b36756b7f686382cdf19f82623cd297619791b6e..5bd618052d1d6764a6711792deb2d46da94b3863 100644 --- a/pkgs/tasty-lua.nix +++ b/pkgs/tasty-lua.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tasty-rerun.nix b/pkgs/tasty-rerun.nix index 4dee8ecf19c08e24f289fff6cd62d739976ade18..b5cd9cf9f9ac0d202c6b59478d4c5f974144c783 100644 --- a/pkgs/tasty-rerun.nix +++ b/pkgs/tasty-rerun.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tasty-wai.nix b/pkgs/tasty-wai.nix index b4b498015ff28adf4fd68244b4a551fd4e4de69c..d7611fb77c0f6813156ef5d965d58283c3aa9456 100644 --- a/pkgs/tasty-wai.nix +++ b/pkgs/tasty-wai.nix @@ -16,7 +16,7 @@ mkDerivation { testHaskellDepends = [ base http-types tasty wai ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tdigest.nix b/pkgs/tdigest.nix index 1f2af0e9b2d87cc58079d2c1adbaab8e6f3859d9..eeb6cdf8bd29c316fc7eb500d09b25d18f92af28 100644 --- a/pkgs/tdigest.nix +++ b/pkgs/tdigest.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/template-haskell-compat-v0208.nix b/pkgs/template-haskell-compat-v0208.nix index f465573ec14e2a0815f8df0ea18a4335f747f2d0..2ba1afcf4c13b49ee1359e36073ee997fa112c8d 100644 --- a/pkgs/template-haskell-compat-v0208.nix +++ b/pkgs/template-haskell-compat-v0208.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base template-haskell ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/test-framework-smallcheck.nix b/pkgs/test-framework-smallcheck.nix index 2b84164390227bc7dec33e846fd14eb62422b497..69c0b4cb095d6a36606871bca2b5d10b20af0b49 100644 --- a/pkgs/test-framework-smallcheck.nix +++ b/pkgs/test-framework-smallcheck.nix @@ -12,7 +12,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/testing-feat.nix b/pkgs/testing-feat.nix index 45e73b5099b8f82d10d55629bc536d4c48866e45..63632a8666b57bbbd4928999d9af9e9c1a32a9d9 100644 --- a/pkgs/testing-feat.nix +++ b/pkgs/testing-feat.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/testing-type-modifiers.nix b/pkgs/testing-type-modifiers.nix index 244b7ab8051ea175d907ad807cf54fbb63faec2f..ccaf7f1061ec9af6f4685dbbbd44056654523008 100644 --- a/pkgs/testing-type-modifiers.nix +++ b/pkgs/testing-type-modifiers.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/texmath.nix b/pkgs/texmath.nix index e0dd54f34633f0663c5f10bc3c1ba66c86c0e6d5..051161b17fbdae014193a77b70c9f43116bd700f 100644 --- a/pkgs/texmath.nix +++ b/pkgs/texmath.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-ansi.nix b/pkgs/text-ansi.nix index 813efb0c6d319506995ab1180cc1f4decb89fb30..64efc92b4e7368926bef88f3d5dc1ed61b292222 100644 --- a/pkgs/text-ansi.nix +++ b/pkgs/text-ansi.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base text text-builder-linear ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-builder-dev.nix b/pkgs/text-builder-dev.nix index 25db52363202d9d13320385c0eb3be7ac8e4b172..017aeb365c9427c29d84d6d61c7654a97328af3c 100644 --- a/pkgs/text-builder-dev.nix +++ b/pkgs/text-builder-dev.nix @@ -21,7 +21,7 @@ mkDerivation { benchmarkHaskellDepends = [ criterion rerebase ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-builder-linear.nix b/pkgs/text-builder-linear.nix index 2970fc26a52579e32c0a665671584712449bafc0..f5ace1c4fa5799d851aba3019f7e8ed21fe3b61e 100644 --- a/pkgs/text-builder-linear.nix +++ b/pkgs/text-builder-linear.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-builder.nix b/pkgs/text-builder.nix index 06a7313827d4fec603b49514d17ae5da61eec9c5..a3d457b46081f1de12a74049029f385c2bf05d2f 100644 --- a/pkgs/text-builder.nix +++ b/pkgs/text-builder.nix @@ -15,7 +15,7 @@ mkDerivation { benchmarkHaskellDepends = [ criterion rerebase ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-conversions.nix b/pkgs/text-conversions.nix index 64160d827dcfb8e4c43c71bf7a5c2e441e48e9d8..0ee157ba2079fd40d85d53358313c0dfa219c25f 100644 --- a/pkgs/text-conversions.nix +++ b/pkgs/text-conversions.nix @@ -15,7 +15,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-display.nix b/pkgs/text-display.nix index 2a2a0172902747238a4df83a881ca78a21e88227..0e30100a42613b1e1e56eede275a2caae1093e2c 100644 --- a/pkgs/text-display.nix +++ b/pkgs/text-display.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-icu.nix b/pkgs/text-icu.nix index bf576e386b286add622a52e1265a4ae3a3404798..fec80885d9c08f214e78c3409fce08830af847d8 100644 --- a/pkgs/text-icu.nix +++ b/pkgs/text-icu.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-latin1.nix b/pkgs/text-latin1.nix index b35fc82286e3acd4b2622b231943be6d2f56c684..f579b1d465881143528cc212f1657968d94a516c 100644 --- a/pkgs/text-latin1.nix +++ b/pkgs/text-latin1.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-printer.nix b/pkgs/text-printer.nix index 7b6c436a4b97dd463fa5b88ccff9358719bdca8f..f58b39e0688250af71babc9845c8598c029ec141 100644 --- a/pkgs/text-printer.nix +++ b/pkgs/text-printer.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/text-rope.nix b/pkgs/text-rope.nix index db910a67fa53ac113f89138bb51ffc2ac883421a..cd62c45f029c8f6eb84aa4f08b519296d60f0698 100644 --- a/pkgs/text-rope.nix +++ b/pkgs/text-rope.nix @@ -13,7 +13,7 @@ mkDerivation { benchmarkHaskellDepends = [ base random tasty-bench text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/th-desugar.nix b/pkgs/th-desugar.nix index 60d6f193ddc27aedea1c099d8c3ca83792343f31..68d693403f0e782bb18b5803f02af70abde6a66d 100644 --- a/pkgs/th-desugar.nix +++ b/pkgs/th-desugar.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/th-env.nix b/pkgs/th-env.nix index fae0a6faf5a6dc2f94a5931c551e11fde74e589d..3ef78102d68095b2f9155948ec38c7e95058a358 100644 --- a/pkgs/th-env.nix +++ b/pkgs/th-env.nix @@ -13,7 +13,7 @@ mkDerivation { testToolDepends = [ markdown-unlit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/th-extras.nix b/pkgs/th-extras.nix index f85c076690bc1bfabf0ac8183a0574d290de8cf4..86e18b294205521ee5423bbf63f418d421f3db5d 100644 --- a/pkgs/th-extras.nix +++ b/pkgs/th-extras.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/these-skinny.nix b/pkgs/these-skinny.nix index 5a3279c97a3c1bc440ef8a3efbaf305a1c097eea..59e8df229210f18c7369a0337a872143470cfde1 100644 --- a/pkgs/these-skinny.nix +++ b/pkgs/these-skinny.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base deepseq ghc-prim ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/threads.nix b/pkgs/threads.nix index 47d185b0da3577430dbf74cbcded0772660f5f48..1b41b4d26d8c05f236f7f19ca64884cc3e8e7a17 100644 --- a/pkgs/threads.nix +++ b/pkgs/threads.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tidal-link.nix b/pkgs/tidal-link.nix index 796faca3a47aba2b6a5260ef2597e6590205a00f..4a40a9e83e7107da9e2e98028c82c75cd881edb3 100644 --- a/pkgs/tidal-link.nix +++ b/pkgs/tidal-link.nix @@ -10,7 +10,7 @@ mkDerivation { executableHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tidal.nix b/pkgs/tidal.nix index 294bf17eddb22d79ad82b36b6b256b0c0620b1a0..e58e08707166c8c8d6e173776eab9da7047fdd36 100644 --- a/pkgs/tidal.nix +++ b/pkgs/tidal.nix @@ -22,7 +22,7 @@ mkDerivation { benchmarkHaskellDepends = [ base criterion weigh ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/time-locale-compat.nix b/pkgs/time-locale-compat.nix index f80592e6787a56b5cb1591dfe4ee30baec8b2eba..ab864a2e39315aa14853d208204616d1504c3733 100644 --- a/pkgs/time-locale-compat.nix +++ b/pkgs/time-locale-compat.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base old-locale time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/time-units.nix b/pkgs/time-units.nix index fcd112e748d70335f33b046c1a90c358071fb559..5a5f75505b974cd35df51129ee6d94426f12cea2 100644 --- a/pkgs/time-units.nix +++ b/pkgs/time-units.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/timeit.nix b/pkgs/timeit.nix index 85f19418dfb62c946d721dc193902ea4953a1125..42a66ab59d2469a11377e0b27f7c325109ee1371 100644 --- a/pkgs/timeit.nix +++ b/pkgs/timeit.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/timing-convenience.nix b/pkgs/timing-convenience.nix index 8d8ecbb0b91ca3568823b5cf1032972d540caddb..529e786699f22ca217762a3b87c7e657b1842c14 100644 --- a/pkgs/timing-convenience.nix +++ b/pkgs/timing-convenience.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base time ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tmp-postgres.nix b/pkgs/tmp-postgres.nix index 01992375e17dbb103e2f931f800d39182a8a81c9..5f12865c6974e4819f21276c87b0a3e8d89b5314 100644 --- a/pkgs/tmp-postgres.nix +++ b/pkgs/tmp-postgres.nix @@ -36,7 +36,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/toml-parser.nix b/pkgs/toml-parser.nix index 80706d5910f2c3b37960dde6dc00a1d1edc159c7..0811492eecd9e6cef8a1f110bdafd04a4cec8d3a 100644 --- a/pkgs/toml-parser.nix +++ b/pkgs/toml-parser.nix @@ -19,7 +19,7 @@ mkDerivation { testToolDepends = [ hspec-discover markdown-unlit ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/torsor.nix b/pkgs/torsor.nix index 8ab491f24a2246a1a67d9c58a181e95ac421e910..994f05ac48866ab3ba46ce420966c93235c42498 100644 --- a/pkgs/torsor.nix +++ b/pkgs/torsor.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/transformers-except.nix b/pkgs/transformers-except.nix index 3cb7aa712a696cd69d35c5a4f6cfdbefe1e18490..132592dc953edc310edea7054172db7bd5332460 100644 --- a/pkgs/transformers-except.nix +++ b/pkgs/transformers-except.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base exceptions text transformers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/tuple.nix b/pkgs/tuple.nix index 6c3aa3cce550e6c1f238ebf5ae625016c90cba9e..e6ddc7f662a5a8a18fe7fdfa3fcc1ec4fd615799 100644 --- a/pkgs/tuple.nix +++ b/pkgs/tuple.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base OneTuple ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/type-errors-pretty.nix b/pkgs/type-errors-pretty.nix index 450345ab86d40f0a8c27705b06c91ae7316f1586..28d95f8cc51b257175c7031241de07e6fac37fd6 100644 --- a/pkgs/type-errors-pretty.nix +++ b/pkgs/type-errors-pretty.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base doctest Glob ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/type-errors.nix b/pkgs/type-errors.nix index a46eb0e7618c3836e77075ec23d9502991dbca11..5bce175cbc26662111925314ef46960a5bb3c264 100644 --- a/pkgs/type-errors.nix +++ b/pkgs/type-errors.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/type-hint.nix b/pkgs/type-hint.nix index 6c9f7661d628d45ab8a284aa6eef21cc207f6a45..54a4f26c64b84a7880c15c6531d5c7c17c8176b3 100644 --- a/pkgs/type-hint.nix +++ b/pkgs/type-hint.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/typst-symbols.nix b/pkgs/typst-symbols.nix index 37aa597bf881f901e03dec90aacb480624524b74..3fd901d96709264b27f162ae73f23f9e95b7207d 100644 --- a/pkgs/typst-symbols.nix +++ b/pkgs/typst-symbols.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/typst.nix b/pkgs/typst.nix index 3a8d7264f29865dc54f98e5680fee8a634730db7..12f405b12d11216946ebaf8393b15a04ab78ff50 100644 --- a/pkgs/typst.nix +++ b/pkgs/typst.nix @@ -21,7 +21,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/uglymemo.nix b/pkgs/uglymemo.nix index f7d9b782895f640bbb1b24c952918d738605e9d7..17752d86713a89fc9821e1450c6cf6eb821f3a68 100644 --- a/pkgs/uglymemo.nix +++ b/pkgs/uglymemo.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base containers ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/unagi-chan.nix b/pkgs/unagi-chan.nix index adf89f8d652e6c1c669e65592ecfcca9067cca5e..fd65ffd6a4d91c1b779a20e64c990a36d9664778 100644 --- a/pkgs/unagi-chan.nix +++ b/pkgs/unagi-chan.nix @@ -15,7 +15,7 @@ mkDerivation { benchmarkHaskellDepends = [ async base criterion ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/unicode-collation.nix b/pkgs/unicode-collation.nix index e22973df2014712a60713851b1f930b344b7a3c6..4913d14c56d5d942668472dabad42690fd5510ec 100644 --- a/pkgs/unicode-collation.nix +++ b/pkgs/unicode-collation.nix @@ -23,7 +23,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/unicode-data.nix b/pkgs/unicode-data.nix index 637a14c2f6ac35307d5554c09085f51913e75f0d..09762b07d5a4aa751e8dcc9ee3adae224a727cde 100644 --- a/pkgs/unicode-data.nix +++ b/pkgs/unicode-data.nix @@ -13,7 +13,7 @@ mkDerivation { benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/unicode-transforms.nix b/pkgs/unicode-transforms.nix index 61fee90c2863c7e8d5e966cb204d2642ea0fec2a..fedb961b91e16fe06ffe2dcca614f88180cd7998 100644 --- a/pkgs/unicode-transforms.nix +++ b/pkgs/unicode-transforms.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/universe-reverse-instances.nix b/pkgs/universe-reverse-instances.nix index 513f27608ac1a11d8e8c4a5a3b7a171d2f65bfa3..817f28489dc0ef57b028d929398786e0d55abf25 100644 --- a/pkgs/universe-reverse-instances.nix +++ b/pkgs/universe-reverse-instances.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base containers universe-base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/unix-bytestring.nix b/pkgs/unix-bytestring.nix index 0fded446cca1c5a8f1beac361f9073bb0c50a55c..c9ff136b56ae86445d7e83f56a5ed6a982da3b4d 100644 --- a/pkgs/unix-bytestring.nix +++ b/pkgs/unix-bytestring.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base bytestring ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/unix-memory.nix b/pkgs/unix-memory.nix index b5b3514e7a5213ca06c8c3779418dab158356eda..78637875766820b798f5047105bf7abadcdab3f3 100644 --- a/pkgs/unix-memory.nix +++ b/pkgs/unix-memory.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/uri-bytestring.nix b/pkgs/uri-bytestring.nix index 8d2f661146b5ca8f00ec7872c69df72c316c9ebe..ad1f545be9123f7053848cdbc12153ab13505763 100644 --- a/pkgs/uri-bytestring.nix +++ b/pkgs/uri-bytestring.nix @@ -24,7 +24,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/url-slug.nix b/pkgs/url-slug.nix index db45d3fee0074d0e7a7cb98eb2c1f437c3ffdd76..332a178411fa4ad56d95c045ef92bc06d7e3fc56 100644 --- a/pkgs/url-slug.nix +++ b/pkgs/url-slug.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/uuid.nix b/pkgs/uuid.nix index da38074af20574ca667410cf128ae7e2b182c849..ba3c8bdff7215d24a5c3bf9313eb391e49970bde 100644 --- a/pkgs/uuid.nix +++ b/pkgs/uuid.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/validation-selective.nix b/pkgs/validation-selective.nix index a183ab4033521a3ca3186deca8bc283dbe52e84b..30fb5728ee6a68ff4d516559efff56bb14973d6e 100644 --- a/pkgs/validation-selective.nix +++ b/pkgs/validation-selective.nix @@ -16,7 +16,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/validation.nix b/pkgs/validation.nix index fe2efe056ecfbbf601370e3da98f841bae786abd..a18fa31e87110f9fd79820b7f679a3912a405b63 100644 --- a/pkgs/validation.nix +++ b/pkgs/validation.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base hedgehog HUnit lens semigroups ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/validity-case-insensitive.nix b/pkgs/validity-case-insensitive.nix index c11bffe004352c692a3532789cbf37ab74869169..19cd590c046e6118187e6ed107c81ea6972c4a44 100644 --- a/pkgs/validity-case-insensitive.nix +++ b/pkgs/validity-case-insensitive.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/validity-path.nix b/pkgs/validity-path.nix index 9e0c6503a38f958966254c2fd86a993380b3d2ed..e0b7ee0082864df0c7fe2e34f7be1d27aba06849 100644 --- a/pkgs/validity-path.nix +++ b/pkgs/validity-path.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/validity-persistent.nix b/pkgs/validity-persistent.nix index 7a432fd1f0ed85197a22c9d05b2b48b3d3f9e42f..37dbe0a1c647ef8e898bd50855b03997b795e3e3 100644 --- a/pkgs/validity-persistent.nix +++ b/pkgs/validity-persistent.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base hspec persistent validity ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/validity-primitive.nix b/pkgs/validity-primitive.nix index ccbbe0ee4b0f303dcec6eedda428b0c8358e47c7..c970768cb23ef4bf33f88a4d5ac33802b9108ab5 100644 --- a/pkgs/validity-primitive.nix +++ b/pkgs/validity-primitive.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base primitive validity ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/validity-time.nix b/pkgs/validity-time.nix index a04026cf8210d4092bd5d90bc03f3db1fea1426b..61dce330905368b2b2ffaee31b24187277141efc 100644 --- a/pkgs/validity-time.nix +++ b/pkgs/validity-time.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base time validity ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/validity-uuid.nix b/pkgs/validity-uuid.nix index 431af53a5c9d41f218e15676f26f72da8010786b..cfdc69b5f81ffb316f6d66b50b6e75cc335169c0 100644 --- a/pkgs/validity-uuid.nix +++ b/pkgs/validity-uuid.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base uuid validity ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/vector-instances.nix b/pkgs/vector-instances.nix index 01f57328ec04b5a0dbba17b230fadc4097d0db00..11f25b69bd6750141b8e0aaf3d77cfadc7f638a5 100644 --- a/pkgs/vector-instances.nix +++ b/pkgs/vector-instances.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/vector-sized.nix b/pkgs/vector-sized.nix index 1a4c4e4110142e03f976ae2e2d77d7bfb1b4acde..841c6e5ae4c5a2c1a68dfa775b6129f72dcc5a89 100644 --- a/pkgs/vector-sized.nix +++ b/pkgs/vector-sized.nix @@ -17,7 +17,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/vector-space.nix b/pkgs/vector-space.nix index ff98ff650f2048ee0010f00e8dfc2633def0719e..2888fd0bef8fa8f86b034f86bc19b0364da99027 100644 --- a/pkgs/vector-space.nix +++ b/pkgs/vector-space.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/version-natural-dhall-instance.nix b/pkgs/version-natural-dhall-instance.nix index b8e91dc7989862c0946462e7f309fca5441d2280..6e5080fcab4eff50ef5e18fff5f7dcfe9bbc7015 100644 --- a/pkgs/version-natural-dhall-instance.nix +++ b/pkgs/version-natural-dhall-instance.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base dhall version-natural ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/version-natural.nix b/pkgs/version-natural.nix index e0ff4ff19d62fc760157d87d367a7dbf6ac89e9f..017fa8d60907cf0728d12d54e41582dc3832623b 100644 --- a/pkgs/version-natural.nix +++ b/pkgs/version-natural.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/vinyl.nix b/pkgs/vinyl.nix index a494aeef1e859991dafbc5f315422c9b92121ad3..3bad9fbf6416c5596a501a5041ce04b49a2f7d9a 100644 --- a/pkgs/vinyl.nix +++ b/pkgs/vinyl.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/vty-crossplatform.nix b/pkgs/vty-crossplatform.nix index f9281edb51b37fb6d237ade5044c63c073096bcb..c0197ee979fc06f9f366453ea15b5465a05bcee3 100644 --- a/pkgs/vty-crossplatform.nix +++ b/pkgs/vty-crossplatform.nix @@ -11,7 +11,7 @@ mkDerivation { libraryHaskellDepends = [ base vty vty-unix ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/vty-unix.nix b/pkgs/vty-unix.nix index 53b8d5c66357748d484a487ab19a76a641589bb4..1413323972882936437540166c22cc8a23f6548b 100644 --- a/pkgs/vty-unix.nix +++ b/pkgs/vty-unix.nix @@ -18,7 +18,7 @@ mkDerivation { executableHaskellDepends = [ ansi-terminal base vty ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wai-app-static.nix b/pkgs/wai-app-static.nix index ae1a89ff3faf6af3f5f7d38bb60da4a8895b95b4..5baada8d18febfbb4ceb1828b9a40134fcb85d7a 100644 --- a/pkgs/wai-app-static.nix +++ b/pkgs/wai-app-static.nix @@ -26,7 +26,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wai-extra.nix b/pkgs/wai-extra.nix index ebb54852e2155ebe4ce663228cb57d6484b069db..2798ccac59a579fe664a16c06cb039e77fcc6b9e 100644 --- a/pkgs/wai-extra.nix +++ b/pkgs/wai-extra.nix @@ -29,7 +29,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wai-log.nix b/pkgs/wai-log.nix index 962a31aa697a39402da76933272b9baee62cc709..6095f3a75b131baa65f7d01b98cc202c9859780d 100644 --- a/pkgs/wai-log.nix +++ b/pkgs/wai-log.nix @@ -14,7 +14,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wai-middleware-heartbeat.nix b/pkgs/wai-middleware-heartbeat.nix index 288e5fa05e76af0ad387b5b899f0edbfab0b287d..eef80d75b861b24e11ed1a70cc6698ae7de25652 100644 --- a/pkgs/wai-middleware-heartbeat.nix +++ b/pkgs/wai-middleware-heartbeat.nix @@ -14,7 +14,7 @@ mkDerivation { libraryHaskellDepends = [ base http-types wai ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wai-middleware-prometheus.nix b/pkgs/wai-middleware-prometheus.nix index 24ca7a08935873c43fb350421908be143ae256f3..05d7ae28fb7f4e3dc6c0eec4e6361b97b130e6ad 100644 --- a/pkgs/wai-middleware-prometheus.nix +++ b/pkgs/wai-middleware-prometheus.nix @@ -15,7 +15,7 @@ mkDerivation { testHaskellDepends = [ base doctest prometheus-client ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wai-middleware-static.nix b/pkgs/wai-middleware-static.nix index 13c392af71225fdbaf439388056a7984e0969ecf..e3b39d455cdda300ca827d107a7cc454f2acb1df 100644 --- a/pkgs/wai-middleware-static.nix +++ b/pkgs/wai-middleware-static.nix @@ -25,7 +25,7 @@ mkDerivation { testToolDepends = [ hspec-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wai-websockets.nix b/pkgs/wai-websockets.nix index 588fc665392539565392f78e9093cbd9e79df35b..13d08fb564fd09dc545c0c2dbab3a6b9cb650aa2 100644 --- a/pkgs/wai-websockets.nix +++ b/pkgs/wai-websockets.nix @@ -19,7 +19,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/warp-tls.nix b/pkgs/warp-tls.nix index 0ef5e984b2539221a2ee5814de8265e02a13f8c9..11a0de1c077894274d8c7a058a2d8eafb9b3029c 100644 --- a/pkgs/warp-tls.nix +++ b/pkgs/warp-tls.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/warp.nix b/pkgs/warp.nix index 91a5a7c7d87cbbc788aa306108e775cf0b29bf0a..c357caf9a09b73c422546fe6ee90a00b121b0fcb 100644 --- a/pkgs/warp.nix +++ b/pkgs/warp.nix @@ -33,7 +33,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/websockets.nix b/pkgs/websockets.nix index 21cf7157ec72d3e302bf07badec3b5ece1f1805d..53ee81c6f12736ed7aa26a17db9ea18e302fadf7 100644 --- a/pkgs/websockets.nix +++ b/pkgs/websockets.nix @@ -31,7 +31,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wide-word.nix b/pkgs/wide-word.nix index 25f5165744b80c6bf982df83e0ec60ff38ea6d28..a8143dac34aec3a9454eb70afea848a9fa906c91 100644 --- a/pkgs/wide-word.nix +++ b/pkgs/wide-word.nix @@ -18,7 +18,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/with-utf8.nix b/pkgs/with-utf8.nix index 906092ba81d7f0b6c03d15a30534a6caf3beb7bf..13d011a973f8d6c436eb5726eb4b6fb8f71a0c7b 100644 --- a/pkgs/with-utf8.nix +++ b/pkgs/with-utf8.nix @@ -20,7 +20,7 @@ mkDerivation { testToolDepends = [ tasty-discover ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wizards.nix b/pkgs/wizards.nix index 4b4d1544536598e504bf8efa03f3ca8f658e1d73..575cddfe54ae0bcdb519006ce4390b505d2aec18 100644 --- a/pkgs/wizards.nix +++ b/pkgs/wizards.nix @@ -15,7 +15,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/word-compat.nix b/pkgs/word-compat.nix index 9e1d735736f8e1b6a41cd0326e6fc77c809336de..6054a3820b508ad9481647f074261a567a36c8ae 100644 --- a/pkgs/word-compat.nix +++ b/pkgs/word-compat.nix @@ -10,7 +10,7 @@ mkDerivation { testHaskellDepends = [ base ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wreq.nix b/pkgs/wreq.nix index c188c0c0fa73a939ffe07b1a902be314d8e6cad1..c1bafd03c3aca3c7ba75142770b7a5ef8dfd70b2 100644 --- a/pkgs/wreq.nix +++ b/pkgs/wreq.nix @@ -34,7 +34,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/wuss.nix b/pkgs/wuss.nix index 57ccde0fe3c14564fb141f9b68d65b815674bef2..d7c0330f52d568753c0fdd04d28ed50dac79a1e9 100644 --- a/pkgs/wuss.nix +++ b/pkgs/wuss.nix @@ -13,7 +13,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/xml-conduit-writer.nix b/pkgs/xml-conduit-writer.nix index ff46fe09ef3996519e13bf925525d5105e358cca..56abe5cf33b654cdb4414b7ff5858d0631ac265f 100644 --- a/pkgs/xml-conduit-writer.nix +++ b/pkgs/xml-conduit-writer.nix @@ -14,7 +14,7 @@ mkDerivation { testHaskellDepends = [ base text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/xml-conduit.nix b/pkgs/xml-conduit.nix index 844c28f833f6751f8d872dca2db4d3d4b28ad619..a90ee9ec2168fc1a342c66ff297d41abd955c870 100644 --- a/pkgs/xml-conduit.nix +++ b/pkgs/xml-conduit.nix @@ -22,7 +22,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/xml-types.nix b/pkgs/xml-types.nix index 0ae1173a4134b2171e5f712a85a13cd704b69e40..b1007b57fa7cff6f16f7549d78241a69275677a0 100644 --- a/pkgs/xml-types.nix +++ b/pkgs/xml-types.nix @@ -9,7 +9,7 @@ mkDerivation { libraryHaskellDepends = [ base deepseq text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/xmlgen.nix b/pkgs/xmlgen.nix index 25e39413e0219c43dcb92af635417b14164a2116..16bd487f50a3a55d7e258d4c034a4f56b06ca19e 100644 --- a/pkgs/xmlgen.nix +++ b/pkgs/xmlgen.nix @@ -21,7 +21,7 @@ mkDerivation { benchmarkHaskellDepends = [ base bytestring criterion text ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/xss-sanitize.nix b/pkgs/xss-sanitize.nix index dc3c6274054373b005f5edf0171f4c6e8fa7cae6..d846b410884415b6245f282e45f2f5308b63825b 100644 --- a/pkgs/xss-sanitize.nix +++ b/pkgs/xss-sanitize.nix @@ -20,7 +20,7 @@ mkDerivation { ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/zip-archive.nix b/pkgs/zip-archive.nix index 50369811a4f843748852fc0ef5fbe8deb0143b8f..30a0b2d865f6c7c55ea1998bc078e7c6d4dae4ce 100644 --- a/pkgs/zip-archive.nix +++ b/pkgs/zip-archive.nix @@ -20,7 +20,7 @@ mkDerivation { testToolDepends = [ which ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false; diff --git a/pkgs/zlib-bindings.nix b/pkgs/zlib-bindings.nix index 0d232194788efa2f337af047da0fa5aed98e8411..46bfb74d87ab3dd93c1aafcc2815d536ef9d8d70 100644 --- a/pkgs/zlib-bindings.nix +++ b/pkgs/zlib-bindings.nix @@ -12,7 +12,7 @@ mkDerivation { testHaskellDepends = [ base bytestring hspec QuickCheck zlib ]; enableLibraryProfiling = true; enableExecutableProfiling = true; - doHaddock = false; + doHaddock = true; jailbreak = true; doCheck = false; doBenchmark = false;