Simon Marlow
Simon Marlow
``` haskell -- | Spawn a new process, supplying it with a new 'ReceivePort' and return -- the corresponding 'SendPort'. spawnChannel :: forall a. Typeable a => Static (SerializableDict a)...
**Describe the bug** We have a project with a [`.cabal` file](https://github.com/facebookincubator/Glean/blob/main/glean.cabal.in) that contains 40+ library stanzas, a dozen or so executables and 50+ test-suite stanzas. Working with this project is...
This simple program does not run in parallel: ``` haskell import Control.Monad.Par fib :: Integer -> Integer fib 0 = 1 fib 1 = 1 fib n = fib (n-1)...
NOTE: the proposal is currently "parked" pending discussions of alternatives, see [this comment](https://github.com/haskell/ecosystem-proposals/pull/4#issuecomment-360089938). [Rendered proposal](https://github.com/simonmar/ecosystem-proposals/blob/slurp/proposals/0000-slurp.rst) Hackage has been extraordinarily successful as a single repository through which to share Haskell packages....
See #6105 Please read [Github PR Conventions](https://github.com/haskell/cabal/blob/master/CONTRIBUTING.md#github-pull-request-conventions) and then fill in *one* of these two templates. * [X ] Patches conform to the [coding conventions](https://github.com/haskell/cabal/blob/master/CONTRIBUTING.md#other-conventions). * [ ] Is this...
**Describe the bug** Sometimes `cabal test` doesn't relink the test-suite executable when it should. I can verify this by removing the executable and then re-running `cabal test`, and I get...
https://github.com/facebookincubator/hsthrift/actions/runs/16886204995/job/47834479418 ``` Error: [Cabal-6421] Could not find module: Constants.Types with any suffix: ["gc","chs","hsc","x","y","ly","cpphs","hs","lhs","hsig","lhsig"]. If the module is autogenerated it should be added to 'autogen-modules'. ``` also the cabal-only CI job...