-
Notifications
You must be signed in to change notification settings - Fork 5
/
friendly.cabal
36 lines (34 loc) · 1.27 KB
/
friendly.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
name: friendly
version: 0.1.0.4
synopsis: Attempt to pretty-print any input
description: The friendly executable copies standard input
to standard output, attempting to pretty-print the
input without actually requiring that the input
is well-formed in any way.
license: BSD3
license-file: LICENSE
author: Edsko de Vries
maintainer: edsko@well-typed.com
copyright: Edsko de Vries
category: Development
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
tested-with: GHC==8.10.7
, GHC==9.0.2
, GHC==9.2.8
, GHC==9.4.8
, GHC==9.6.4
, GHC==9.8.1
source-repository head
type: git
location: https://github.com/edsko/friendly
executable friendly
main-is: Main.hs
build-depends: base >= 4.7 && < 4.20
, bifunctors >= 4.2 && < 5.7
, optparse-applicative >= 0.11 && < 0.19
hs-source-dirs: src
default-language: Haskell2010
default-extensions: MultiWayIf
ghc-options: -Wall