hmumps 0.1 → 0.1.1
raw patch · 2 files changed
+6/−4 lines, 2 filesdep −haskell98
Dependencies removed: haskell98
Files
- HMumps/Runtime.hs +1/−2
- hmumps.cabal +5/−2
HMumps/Runtime.hs view
@@ -34,8 +34,7 @@ import Control.Monad.State import Control.Monad.Error -import System(exitWith)-import System.Exit(ExitCode(..))+import System.Exit(exitWith, ExitCode(..)) newtype RunMonad a = RM {runRunMonad :: ErrorT String (StateT [RunState] IO) a} deriving (Functor, Monad, MonadIO, MonadState [RunState], MonadError String)
hmumps.cabal view
@@ -7,7 +7,7 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version: 0.1+Version: 0.1.1 Synopsis: Interpreter for the MUMPS langugae Description: Partial interpreter for the MUMPS language.@@ -26,11 +26,14 @@ Cabal-version: >=1.6 +Source-repository head+ Type: darcs+ Location: http://community.haskell.org/~aslatter/code/hmumps/ Executable hmumps Main-is: Main.hs - Build-depends: base == 4.*, haskell98, regex-compat, parsec == 3.1.*,+ Build-depends: base == 4.*, regex-compat, parsec == 3.1.*, QuickCheck == 1.*, mtl == 1.1.*, containers == 0.3.*, haskeline == 0.6.*, syb == 0.1.*, text == 0.7.*