-
Notifications
You must be signed in to change notification settings - Fork 2
/
linenoise.cabal
46 lines (40 loc) · 1.18 KB
/
linenoise.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: linenoise
version: 0.1
synopsis: Interactive prompts with linenoise.
homepage: https://github.com/sdiehl/haskell-linenoise
license: BSD3
license-file: LICENSE
author: Stephen Diehl
maintainer: [email protected]
copyright: 2014 Stephen Diehl
category: User Interfaces
build-type: Simple
cabal-version: >=1.10
extra-source-files:
cbits/linenoise.h
Bug-Reports: https://github.com/sdiehl/haskell-linenoise/issues
Description:
Interactive prompts with linenoise.
Source-Repository head
Type: git
Location: [email protected]:sdiehl/haskell-linenoise.git
library
exposed-modules:
System.Console.Repl
other-modules:
System.Console.FFI
other-extensions:
ForeignFunctionInterface
ghc-options: -Wall -fwarn-tabs
cc-options:
build-depends:
base >= 4.6 && <5.0,
mtl >= 2.2 && <3.0,
exceptions >= 0.7 && <0.9,
filepath >= 1.2,
directory >= 1.2
default-language: Haskell2010
hs-source-dirs: src
Include-dirs: cbits
C-sources:
cbits/linenoise.c