-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhed.cabal
More file actions
26 lines (25 loc) · 812 Bytes
/
Copy pathhed.cabal
File metadata and controls
26 lines (25 loc) · 812 Bytes
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
name: hed
version: 0.1
synopsis: A rough `ed` clone in Haskell.
-- description:
homepage: https://github.com/relrod/hed
license: BSD3
license-file: LICENSE
author: Ricky Elrod
maintainer: ricky@elrod.me
-- copyright:
category: Text
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >= 1.10
executable hed
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >= 4 && < 5
, bytestring >= 0.10 && < 0.11
, attoparsec >= 0.11 && < 1
, containers >= 0.5.8 && < 1
, process >= 1.4 && < 2
hs-source-dirs: src
default-language: Haskell2010