-
Notifications
You must be signed in to change notification settings - Fork 2
/
thank-you-stars.cabal
74 lines (66 loc) · 1.89 KB
/
thank-you-stars.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
cabal-version: 2.4
name: thank-you-stars
version: 1.0.1
synopsis: Give your dependencies stars on GitHub!
description:
A tool for starring GitHub repositories. It detects dependent libraries
which are hosted on GitHub via .cabal files,
and stars the repositories all at once.
category: Utils
homepage: https://github.com/y-taka-23/thank-you-stars
license: BSD-3-Clause
license-file: LICENSE
author: Yuto Takahashi <ytaka23dev@gmail.com>
maintainer: Yuto Takahashi <ytaka23dev@gmail.com>
copyright: Copyright (C) 2022 Yuto Takahashi
extra-source-files: README.md
common common
ghc-options: -Wall -O2 -static -threaded
cc-options: -static
ld-options: -static -pthread
build-depends: base >=4.7 && <5
default-language: Haskell2010
executable thank-you-stars
import: common
hs-source-dirs: app
main-is: Main.hs
build-depends:
, containers
, directory
, filepath
, thank-you-stars
library
import: common
hs-source-dirs: src
exposed-modules:
Utils.ThankYouStars.GitHub
Utils.ThankYouStars.Package
other-modules: Paths_thank_you_stars
autogen-modules: Paths_thank_you_stars
build-depends:
, aeson >=1.5.6.0
, bytestring
, Cabal
, containers
, directory
, filepath
, hackage-db >=2.1.2
, req >=3.9.0
, split >=0.2.3.4
, text
test-suite thank-you-stars-spec
import: common
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
Utils.ThankYouStars.GitHubSpec
Utils.ThankYouStars.PackageSpec
build-depends:
, Cabal
, containers
, directory
, filepath
, hspec >=2.7.10
, thank-you-stars
build-tool-depends: hspec-discover:hspec-discover -any