Valentin Robert

Results 46 comments of Valentin Robert

Unless I'm doing something silly, it's actually very simple to reproduce. On my machine, the following program run in 100s: ``` renderIO stdout (layoutPretty @() (LayoutOptions Unbounded) (fillSep (replicate 100000...

Great, I can confirm that, by removing `exactDeps = true`, I can build my project within the nix shell. cabal ended up building alex/happy within the shell, but it was...

Warning for direnv and/or lorri users! I just wasted a shameful amount of time debugging why, for a certain project, it would build just fine on one of my machines,...

In case it helps, this is the directory structure in the `error-when-opening-deep-dep` branch: ``` . ├── cabal.project ├── deps │   └── submodule │   ├── cabal.project │   ├── deep-dep │   │  ...

Supposedly (I posted this 5 years ago), I was putting it at the exact same location that I put the hand-written alternative [here](https://github.com/Ptival/language-ocaml/blob/f7865ae8881cc4934705935e402433ec951fdb49/lib/Language/OCaml/Parser/Generator/Lexer.x#L585-L595)

Tried today but I can neither build nor install alex from source. - `cabal build` fails with: ``` Resolving dependencies... Build profile: -w ghc-9.2.7 -O1 In order, the following will...

Experiencing a similar hang, on Intel Mac. All I'm doing is starting an ubuntu:22.04 image, installing some build dependencies, and trying to build binutils. i.e. ``` apt update apt install...

@lucaspar Not sure whether you saw my edit before asking, but I believe the crux of the problem lies in the build happening in a mounted, native directory, rather than...

Ran into this error message today as a first-time user. The error message is indeed completely obscure, I had to look it up online and end up here to understand...

Ah indeed, in our example we have a: ``` newtype Name (sym :: Symbol) = Name { name :: Text } deriving (Eq, Ord, Show, Generic, NFData) ``` that has...