Oleg Grenrus

Results 955 comments of Oleg Grenrus

> did you check that this doesn't lead to duplicated options when cabal calls GHC? Yes, it looks like so. I'd say the problem is rather that `GhcOptions` is not...

I realised that we should only pass `-pgmc gcc` to GHC when user explicitly passed `--with-gcc` to `cabal-install` / `Cabal`. GHC has its own C compiler (in `ghc --info`) and...

Today I noticed that if you add a haddock flag, e.g. `--haddock-hoogle`, `cabal haddock` will rebuild all the transitive dependencies. In past two years, I haven't found a situation where...

FWIW, the `=` is optional, so you can do ``` cabal v2-install cabal-install --installdir ~/.cabal/bin ```

There is already `c` , why a separate additional constraint is needed?

Where from `d` comes from then? ```haskell ccpara_SList :: Proxy c -> Proxy d -> r '[] -> (forall y ys. (c y, d ys, MyAll c d ys) =>...

I see, so we can have `d` which is not of form `All c'`; but what is the use case? Can't the additional premise for induction be encoded in `r...

@nh2 does this look good? If you say so, I'll merge this without requiring a test case

I'd pick `{real : ..., imag : ...}`, it will be analogous to Ratio. Also add `FromJSON1` and `ToJSON1` instance. `Ratio` doesn't have those, as it has an invariant, but...

> (similar to the existing DotNetTime newtype). Not worth the trouble.