IHaskell/ihaskell.cabal

201 lines
6.5 KiB
Plaintext
Raw Permalink 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
2019-04-26 14:51:04 -04:00
-- PVP summary: +--+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
2024-11-03 11:11:43 +11:00
version: 0.12.0.0
-- A short (one-line) description of the package.
synopsis: A Haskell backend kernel for the Jupyter project.
-- A longer description of the package.
description: IHaskell is a Haskell backend kernel for the Jupyter 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.
2015-08-16 00:53:54 -07:00
homepage: http://github.com/gibiansky/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.
2021-04-26 02:57:42 +10:00
cabal-version: 1.16
data-files:
html/kernel.js
2018-07-18 16:18:38 +02:00
html/logo-64x64.svg
jupyterlab-ihaskell/labextension/package.json
jupyterlab-ihaskell/labextension/static/*.js
2013-12-14 14:22:58 -08:00
2021-10-10 03:45:16 +11:00
flag use-hlint
description: Include HLint support
default: True
manual: True
library
2014-01-03 00:10:15 -05:00
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
if impl (ghc >= 8.4)
ghc-options: -Wpartial-fields
build-depends: ghc-syntax-highlighter
2023-08-11 01:59:46 -07:00
exposed-modules: IHaskell.Eval.Evaluate.HTML
2015-08-12 22:20:36 +02:00
build-depends:
2023-10-24 21:28:22 +11:00
base >=4.9 && <5,
binary ,
containers ,
directory ,
bytestring ,
exceptions ,
filepath ,
ghc >=8.4 && <9.11,
ghc-boot ,
haskeline ,
parsec ,
process ,
random ,
stm ,
text ,
time ,
transformers ,
unix ,
aeson >=1.0,
base64-bytestring >=1.0,
cmdargs >=0.10,
ghc-parser >=0.2.1,
ghc-paths >=0.1,
http-client >=0.4,
http-client-tls >=0.2,
shelly >=1.5,
split >=0.2,
strict >=0.3,
unordered-containers -any,
utf8-string -any,
vector -any,
2023-11-08 11:17:33 +11:00
ipython-kernel >=0.11.0.0
2021-04-25 05:14:43 +10: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.Parser
2014-01-07 22:48:01 -05:00
IHaskell.Eval.Hoogle
IHaskell.Eval.ParseShell
2015-06-02 11:42:48 +05:30
IHaskell.Eval.Widgets
IHaskell.Eval.Util
IHaskell.Publish
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
IHaskell.CSS
2014-01-05 23:01:38 -05:00
Paths_ihaskell
IHaskellPrelude
other-modules:
2015-05-29 13:14:49 +02:00
StringUtils
2021-10-10 03:45:16 +11:00
if flag(use-hlint)
exposed-modules: IHaskell.Eval.Lint
build-depends: hlint >=1.9
cpp-options: -DUSE_HLINT
if flag(use-hlint) && impl (ghc < 8.10)
build-depends: haskell-src-exts >=1.18
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:
Paths_ihaskell
ghc-options: -threaded -rtsopts -Wall
if os(darwin)
ghc-options: -optP-Wno-nonportable-include-path
if impl (ghc >= 8.4)
ghc-options: -Wpartial-fields
-- Other library packages from which modules are imported.
default-language: Haskell2010
build-depends:
2021-11-06 15:12:04 +11:00
base ,
bytestring ,
containers ,
directory ,
text ,
transformers ,
ghc ,
process ,
unix ,
aeson ,
ihaskell ,
ipython-kernel ,
strict ,
unordered-containers
2015-05-27 18:31:37 +02:00
Test-Suite hspec
Type: exitcode-stdio-1.0
Ghc-Options: -threaded -Wall
if impl (ghc >= 8.4)
ghc-options: -Wpartial-fields
Main-Is: Hspec.hs
hs-source-dirs: src/tests
other-modules:
IHaskell.Test.Eval
IHaskell.Test.Completion
IHaskell.Test.Util
IHaskell.Test.Parser
IHaskell.Test.Hoogle
default-language: Haskell2010
build-depends:
2023-08-16 16:03:17 -07:00
aeson,
base,
ghc,
ghc-paths,
transformers,
directory,
text,
2021-11-06 15:12:04 +11:00
ihaskell,
hspec,
hspec-contrib,
HUnit,
shelly,
raw-strings-qq,
setenv
2013-12-14 11:50:10 -08:00
source-repository head
type: git
location: git://github.com/gibiansky/IHaskell.git