diff --git a/ihaskell.cabal b/ihaskell.cabal index 10bf9660..97475db2 100644 --- a/ihaskell.cabal +++ b/ihaskell.cabal @@ -114,6 +114,7 @@ library IHaskell.Eval.ParseShell IHaskell.Eval.Util IHaskell.IPython + IHaskell.IPython.Stdin IHaskell.Flags IHaskell.Types IHaskell.BrokenPackages diff --git a/ipython-kernel/ipython-kernel.cabal b/ipython-kernel/ipython-kernel.cabal index a5260054..07b8c275 100644 --- a/ipython-kernel/ipython-kernel.cabal +++ b/ipython-kernel/ipython-kernel.cabal @@ -27,12 +27,10 @@ library exposed-modules: IHaskell.IPython.Kernel IHaskell.IPython.Types IHaskell.IPython.ZeroMQ - IHaskell.IPython.Stdin IHaskell.IPython.Message.Writer IHaskell.IPython.Message.Parser IHaskell.IPython.Message.UUID IHaskell.IPython.EasyKernel - -- other-modules: other-extensions: OverloadedStrings hs-source-dirs: src default-language: Haskell2010 @@ -47,12 +45,10 @@ library tar >=0.4.0.1, text >=0.11, transformers >=0.3, - unix >=2.6, uuid >=1.3, zeromq4-haskell >=0.1, SHA >=1.6 - -- Example program executable simple-calc-example hs-source-dirs: examples @@ -64,6 +60,6 @@ executable simple-calc-example parsec >=3.1, text >=0.11, transformers >=0.3 - + if !flag(examples) buildable: False diff --git a/ipython-kernel/src/IHaskell/IPython/Stdin.hs b/src/IHaskell/IPython/Stdin.hs similarity index 100% rename from ipython-kernel/src/IHaskell/IPython/Stdin.hs rename to src/IHaskell/IPython/Stdin.hs