eta-hackage icon indicating copy to clipboard operation
eta-hackage copied to clipboard

A set of patches to make Hackage compatible with the Eta language.

Results 22 eta-hackage issues
Sort by recently updated
recently updated
newest added

From: https://lotz84.github.io/haskellbyexample/ex/spawning-processes ```haskell import System.Process import System.IO main :: IO () main = do (Just hin, Just hout, _, _) grep hello hello grep ``` but gives ``` > grep...

bug

adding import like this ``` import Servant.Utils.StaticFiles (serveDirectoryFileServer) ``` causes etlas to error out ``` src/Main.hs:3:8: Could not find module ‘Servant.Utils.StaticFiles’ ``` EDITED: removed useless example project reference

Vector package is heavily optimized with Core rewrite rules. This code executes in milliseconds and small amount of constant space in GHC: ```Haskell import qualified Data.Vector as V sq x...

bug

Hi all, I might be missing some background about how etlas works, but I'll just propose this nonetheless :wink: Could the proposed process to create a patch changed to something...

Compiles but won't run, error (on macOS Sierra): Exception in thread "main" java.lang.NoSuchMethodError: eta.runtime.concurrent.Concurrent.labelThread(Leta/runtime/stg/StgContext;Leta/runtime/stg/TSO;J)Leta/runtime/stg/Closure; at tasty.test.tasty.Parallel$sat_sMTT.enter(Unknown Source) at eta.runtime.apply.PAP.apply(PAP.java:31) at eta.runtime.apply.PAP.applyV(PAP.java:41) at eta.runtime.apply.Function.applyPV(Function.java:117) at base.ghc.Foreign$$wa1.enter(Unknown Source) at base.ghc.Foreign$$wa3_sDAHO.enter(Unknown Source) at...

This is related to https://github.com/typelead/eta-hackage/issues/42 since directory-1.3.1.1 tries to install unix-2.7.2.2 and that fails. OS-X Sierra I am at current head commit on eta master ``` Ankh-Morpork:eta rpeszek$ git rev-parse...

Currently, when submitting a patch that involves a change to the .cabal file, you need to submit the .caba file as well. This was done for making the patching implementation...

Is a dependency for distributed-process. Offending code: ```haskell #ifdef mingw32_HOST_OS foreign import stdcall unsafe "htonl" htonl :: CInt -> CInt foreign import stdcall unsafe "ntohl" ntohl :: CInt -> CInt...