This repository has been archived by the owner on Apr 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcabal-info.cabal
59 lines (53 loc) · 1.76 KB
/
cabal-info.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
-- Initial cabal-info.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: cabal-info
version: 0.2.1
synopsis: Read information from cabal files
description:
Have you ever needed to get information from a cabal file in a shell
script? Now you can! cabal-info exposes a simple command-line
interface to the cabal file format.
.
There is also a library interface, to solve tasks based on searching
for a .cabal file and then doing something with it.
.
See the <https://github.com/barrucadu/cabal-info README> for more
details.
homepage: https://github.com/barrucadu/cabal-info
license: MIT
license-file: LICENSE
author: Michael Walker
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/barrucadu/cabal-info.git
source-repository this
type: git
location: https://github.com/barrucadu/cabal-info.git
tag: 0.1.0.0
library
exposed-modules: Cabal.Info
build-depends: base >=4.8 && <5
, Cabal
, directory
, filepath
, optparse-applicative
hs-source-dirs: library
default-language: Haskell2010
executable cabal-info
main-is: Main.hs
other-modules: Args
, Describe
, Fields
build-depends: base >=4.8 && <5
, cabal-info
, Cabal
, filepath
, optparse-applicative
hs-source-dirs: cabal-info
default-language: Haskell2010