IHaskell/ihaskell.cabal

219 lines
7.2 KiB
Plaintext
Raw Normal View History

-- The name of the package.
name: ihaskell
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.6.3.0
-- A short (one-line) description of the package.
synopsis: A Haskell backend kernel for the IPython project.
-- A longer description of the package.
2013-12-14 11:50:10 -08:00
description: IHaskell is a Haskell backend kernel for the IPython project. This allows using Haskell via
a console or notebook interface. Additional packages may be installed to provide richer data visualizations.
-- URL for the project homepage or repository.
2013-12-14 11:50:10 -08:00
homepage: http://gibiansky.github.io/IHaskell/
-- The license under which the package is released.
2013-12-14 11:50:10 -08:00
license: MIT
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Andrew Gibiansky
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: andrew.gibiansky@gmail.com
-- A copyright notice.
-- copyright:
category: Development
2014-01-30 16:30:21 -08:00
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.16
data-files:
html/kernel.js
2015-03-06 13:41:06 -08:00
html/custom.css
2015-03-02 19:45:45 -08:00
html/logo-64x64.png
2013-12-14 14:22:58 -08:00
2015-02-05 23:55:29 -05:00
flag binPkgDb
default: True
description: bin-package-db package needed (needed for GHC >= 7.10)
library
2014-01-03 00:10:15 -05:00
hs-source-dirs: src
default-language: Haskell2010
build-depends:
2015-04-21 22:01:17 +05:30
aeson >=0.7 && < 0.9,
2015-02-05 23:55:29 -05:00
base >=4.6 && < 4.9,
base64-bytestring >=1.0,
bytestring >=0.10,
cereal >=0.3,
cmdargs >=0.10,
containers >=0.5,
directory -any,
filepath -any,
2015-02-05 23:55:29 -05:00
ghc >=7.6 || < 7.11,
ghc-parser >=0.1.7,
ghc-paths ==0.1.*,
haskeline -any,
2014-04-21 14:51:20 -07:00
here ==1.2.*,
2014-08-07 09:46:47 -04:00
hlint >=1.9 && <2.0,
2014-11-22 14:27:10 -05:00
haskell-src-exts ==1.16.*,
http-client == 0.4.*,
http-client-tls == 0.2.*,
MissingH >=1.2,
mtl >=2.1,
parsec -any,
process >=1.1,
random >=1.0,
shelly >=1.5,
split >= 0.2,
stm -any,
strict >=0.3,
system-argv0 -any,
text >=0.11,
transformers -any,
unix >= 2.6,
unordered-containers -any,
utf8-string -any,
uuid >=1.3,
vector -any,
2015-05-21 19:54:29 +02:00
ipython-kernel >=0.6.1
2015-02-05 23:55:29 -05:00
if flag(binPkgDb)
build-depends: bin-package-db
2014-01-06 15:45:52 -05:00
2014-01-05 23:01:38 -05:00
exposed-modules: IHaskell.Display
IHaskell.Convert
IHaskell.Convert.Args
IHaskell.Convert.IpynbToLhs
IHaskell.Convert.LhsToIpynb
2014-01-05 23:01:38 -05:00
IHaskell.Eval.Completion
IHaskell.Eval.Inspect
2014-01-05 23:01:38 -05:00
IHaskell.Eval.Evaluate
IHaskell.Eval.Info
IHaskell.Eval.Lint
IHaskell.Eval.Parser
2014-01-07 22:48:01 -05:00
IHaskell.Eval.Hoogle
IHaskell.Eval.ParseShell
IHaskell.Eval.Util
2014-01-05 23:01:38 -05:00
IHaskell.IPython
IHaskell.IPython.Stdin
2014-01-08 16:27:36 -05:00
IHaskell.Flags
2014-01-05 23:01:38 -05:00
IHaskell.Types
2014-02-28 16:19:37 -08:00
IHaskell.BrokenPackages
2014-01-05 23:01:38 -05:00
Paths_ihaskell
other-modules:
IHaskellPrelude
default-extensions:
NoImplicitPrelude
DoAndIfThenElse
OverloadedStrings
ExtendedDefaultRules
executable ihaskell
-- .hs or .lhs file containing the Main module.
main-is: Main.hs
2015-05-27 18:31:37 +02:00
hs-source-dirs: main
other-modules:
IHaskellPrelude
2014-10-26 17:35:32 -07:00
ghc-options: -threaded
-- Other library packages from which modules are imported.
default-language: Haskell2010
build-depends:
2015-05-27 18:31:37 +02:00
ihaskell -any,
2015-02-05 23:55:29 -05:00
base >=4.6 && < 4.9,
2015-05-27 18:31:37 +02:00
text >=0.11,
transformers -any,
ghc >=7.6 || < 7.11,
here ==1.2.*,
2015-05-27 18:31:37 +02:00
aeson >=0.7 && < 0.9,
bytestring >=0.10,
containers >=0.5,
strict >=0.3,
unix >= 2.6,
2015-05-27 18:31:37 +02:00
directory -any,
ipython-kernel >=0.6.1
2015-05-27 18:31:37 +02:00
2015-02-05 23:55:29 -05:00
if flag(binPkgDb)
build-depends: bin-package-db
2013-10-28 09:16:48 -04:00
default-extensions:
NoImplicitPrelude
DoAndIfThenElse
OverloadedStrings
ExtendedDefaultRules
Test-Suite hspec
Type: exitcode-stdio-1.0
Ghc-Options: -threaded
Main-Is: Hspec.hs
default-language: Haskell2010
build-depends:
ihaskell,
aeson >=0.6 && < 0.9,
base >=4.6 && < 4.9,
base64-bytestring >=1.0,
bytestring >=0.10,
cereal >=0.3,
cmdargs >=0.10,
containers >=0.5,
directory -any,
filepath -any,
ghc >=7.6 && < 7.11,
ghc-parser >=0.1.7,
ghc-paths ==0.1.*,
haskeline -any,
here ==1.2.*,
hlint >=1.9 && <2.0,
haskell-src-exts ==1.16.*,
hspec -any,
HUnit -any,
MissingH >=1.2,
mtl >=2.1,
parsec -any,
process >=1.1,
random >=1.0,
shelly >=1.5,
split >= 0.2,
stm -any,
strict >=0.3,
system-argv0 -any,
text >=0.11,
http-client == 0.4.*,
http-client-tls == 0.2.*,
transformers -any,
unix >= 2.6,
unordered-containers -any,
utf8-string -any,
uuid >=1.3,
vector -any,
setenv ==0.1.*,
2015-05-21 19:54:29 +02:00
ipython-kernel >= 0.6.1
if flag(binPkgDb)
build-depends: bin-package-db
default-extensions:
DoAndIfThenElse
OverloadedStrings
ExtendedDefaultRules
2013-12-14 11:50:10 -08:00
source-repository head
type: git
location: git://github.com/gibiansky/IHaskell.git