cabal-extras
cabal-extras copied to clipboard
A tool suite to aid Haskell development using `cabal-install`
Fix https://github.com/phadej/cabal-extras/issues/31. I also reached this issue https://github.com/phadej/cabal-extras/issues/75. Adding a `--global-package-db` can fix it, hopefully.
Running `cabal-store-gc --collect` yields: ``` [ 0.00076] ghc.info: ghc [ 0.00483] process.0.start: cwd=/tmp ghc --info [ 0.08585] info: Reading global package db [ 0.08606] ghc.read-package-db: /home/jaro/.ghcup/ghc/8.10.4/lib/ghc-8.10.4/package.conf.d [ 0.12203] info: 34...
> if someone asked nicely, I could provide windows and osx binaries too (https://github.com/haskell/cabal/issues/2327#issuecomment-901925005) Pretty please :)
E.g. this example is not detected: ```haskell -- >>> length "猫" -- 1 ``` This is due to `haskell-lexer` not supporting this: ```haskell Λ L.lexerPass0 "-- >>> length \"猫\"\n" [(Commentstart,(Pos...
To match d272839.
Fixed some typos in the MANUAL.md of the cabal-docspec tool.
I usually place `-- $setup` in the export list for the haddocks, which I think is valid haddock/doctest practice. It looks like cabal-docspec picks this one up and then ignores...