-
Notifications
You must be signed in to change notification settings - Fork 9
/
language-bash.cabal
80 lines (70 loc) · 2.18 KB
/
language-bash.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
cabal-version: 2.2
name: language-bash
version: 0.11.0
category: Language
license: BSD-3-Clause
license-file: LICENSE
author: Kyle Raftogianis
maintainer: Kyle Raftogianis <knrafto@gmail.com>
copyright: Copyright (c) 2013-2025 Kyle Raftogianis
build-type: Simple
homepage: http://github.com/knrafto/language-bash/
bug-reports: http://github.com/knrafto/language-bash/issues
synopsis: Parsing and pretty-printing Bash shell scripts
description:
A library for parsing, pretty-printing, and manipulating
Bash shell scripts.
tested-with: GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.8, GHC == 9.4.8, GHC == 9.6.6, GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1
extra-source-files:
README.md
tests/pretty/*.golden
tests/pretty/*.sh
source-repository head
type: git
location: https://github.com/knrafto/language-bash.git
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Language.Bash.Cond
Language.Bash.Expand
Language.Bash.Parse
Language.Bash.Parse.Word
Language.Bash.Pretty
Language.Bash.Syntax
Language.Bash.Word
other-modules:
Language.Bash.Operator
Language.Bash.Parse.Builder
Language.Bash.Parse.Internal
build-depends:
-- Notes on version bounds:
--
-- * base-4.11 is the first where Prelude re-exports Semigroup(s). This
-- version of base is bundled with 8.4.1.
-- * parsec-3.1.17.0 is the first where Text.Parsec.Prim.many1 is defined.
-- * prettyprinter-1.7.0 is the first version where Prettyprinter module
-- hierarchy was introduced.
base >= 4.11 && < 5,
parsec >= 3.1.17 && < 4.0,
prettyprinter >= 1.7 && < 2.0,
transformers >= 0.2 && < 0.7
ghc-options: -Wall -Wno-unused-imports -Wno-deriving-typeable
test-suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Tests.hs
build-depends:
base,
directory,
filepath,
language-bash,
parsec,
process,
QuickCheck,
tasty,
tasty-golden,
tasty-quickcheck,
tasty-hunit,
tasty-expected-failure