-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.cabal
More file actions
28 lines (26 loc) · 910 Bytes
/
Copy pathdiff.cabal
File metadata and controls
28 lines (26 loc) · 910 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
27
28
-- Initial diff.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: diff
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: David Obwaller
maintainer: david.obwaller@gmail.com
-- copyright:
category: Development
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable diff
main-is: diff.hs
ghc-options: -O2 -Wall
-- other-modules:
other-extensions: TypeSynonymInstances, FlexibleInstances
build-depends: base >=4.7 && <4.9
, array >=0.5 && <0.6
, text >= 1.1 && <1.3
, parsec >= 3.1.5 && <3.2
hs-source-dirs: src
default-language: Haskell2010