-
Notifications
You must be signed in to change notification settings - Fork 0
/
defloc.cabal
58 lines (48 loc) · 1.68 KB
/
defloc.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
cabal-version: 2.4
name: defloc
version: 0.2.0.0
synopsis: Finds locations of function definitions in shell scripts
description: Simple tool based on ShellCheck's parser that can be used
to find definitions of functions in shell scripts.
homepage: https://github.com/lzaoral/defloc
bug-reports: https://github.com/lzaoral/defloc/issues
license: GPL-3.0-only
license-file: LICENSE
author: Lukáš Zaoral
maintainer: lzaoral@redhat.com
copyright: (c) 2021-2022 Red Hat, Inc.
category: Development
extra-source-files: CHANGELOG.md,
README.md,
tests/*.sh
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.1
source-repository head
type: git
location: https://github.com/lzaoral/defloc.git
library
exposed-modules: Defloc
other-extensions: TupleSections
build-depends: base >= 4 && < 5,
containers,
regex-pcre,
ShellCheck >= 0.7.2 && < 0.9
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -Wall
executable defloc
main-is: Main.hs
other-modules:
build-depends: base >= 4 && < 5,
defloc
default-language: Haskell2010
ghc-options: -Wall
test-suite test-defloc
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends: base >= 4 && < 5,
defloc,
filepath,
HUnit
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -Wall