-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.yaml
More file actions
47 lines (40 loc) · 1.07 KB
/
package.yaml
File metadata and controls
47 lines (40 loc) · 1.07 KB
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
47
name: isocline
version: 1.0.9
github: "daanx/isocline"
license: MIT
author: Daan Leijen
maintainer: daan@effp.org
synopsis: A portable alternative to GNU Readline
category: console
extra-source-files:
- haskell/readme.md
- src/*.c
- src/*.h
- include/*.h
description:
"
A Haskell wrapper around the [Isocline C library](https://github.com/daanx/isocline#readme)
which can provide an alternative to GNU Readline.
(The Isocline library is included whole and there are no runtime dependencies).
Please see the [readme](https://github.com/daanx/isocline/haskell#readme) on GitHub for more information."
dependencies:
- base >= 3.0 && < 5
- bytestring
- text
library:
source-dirs:
- haskell
c-sources:
- src/isocline.c
executables:
example:
main: Example.hs
source-dirs: test
dependencies:
- isocline
tests:
test-example:
main: Example.hs
source-dirs: test
dependencies:
- isocline