We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 005d3cc commit 04ac8ebCopy full SHA for 04ac8eb
flake.nix
@@ -138,7 +138,19 @@
138
(python3.withPackages (ps: with ps; [sphinx sphinx_rtd_theme recommonmark sphinx-markdown-tables sphinxemoji]))
139
haskellPackages.implicit-hie
140
shellcheck
141
- ];
+ ] ++
142
+ (let
143
+ doctest = haskell-nix.hackage-package {
144
+ name = "doctest";
145
+ version = "0.24.0";
146
+ configureArgs = "-f cabal-doctest";
147
+ inherit (config) compiler-nix-name;
148
+ };
149
+ in
150
+ [
151
+ (doctest.getComponent "exe:cabal-doctest")
152
+ (doctest.getComponent "exe:doctest")
153
+ ]);
154
# disable Hoogle until someone request it
155
withHoogle = false;
156
# Skip cross compilers for the shell
0 commit comments