File tree 3 files changed +25
-4
lines changed
3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : haskell
2
2
ghc : 7.8
3
+
4
+ script :
5
+ - cabal configure --enable-tests --ghc-options=-Werror && cabal build && cabal test
6
+ - cabal install --ghc-options=-Werror
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env runhaskell
2
+ import Distribution.Simple
3
+ main = defaultMain
Original file line number Diff line number Diff line change 1
1
name : args-generics
2
2
version : 0.1
3
- cabal-version : >= 1.2
3
+ category : Console, System
4
+ synopsis : Simple command line argument parsing
5
+ description :
6
+ "args-generics" tries to make it very simple to create command line
7
+ interfaces. Users just specify a simple data type (and derive some type
8
+ classes for that type) and "args-generics" creates a command line argument
9
+ parser.
4
10
license : BSD3
5
11
license-file : LICENSE
6
12
author : Linh Nguyen, Sönke Hahn
7
13
copyright : Zalora South East Asia Pte Ltd
8
14
15
+
16
+ cabal-version : >= 1.8
9
17
build-type : Simple
10
18
11
19
library
12
20
hs-source-dirs :
13
21
src
14
22
ghc-options :
15
- -Wall -threaded -fno-warn-name-shadowing
23
+ -Wall -fno-warn-name-shadowing
24
+ exposed-modules :
25
+ System.Console.Args.Generics
16
26
build-depends :
17
27
base == 4. *
18
28
, generics-sop
@@ -22,15 +32,19 @@ test-suite spec
22
32
type :
23
33
exitcode-stdio-1.0
24
34
hs-source-dirs :
25
- src, test
35
+ test
26
36
ghc-options :
27
37
-Wall -threaded -fno-warn-name-shadowing -O0
28
38
main-is :
29
39
Spec.hs
30
40
build-depends :
31
41
base == 4. *
42
+ , args-generics
32
43
, generics-sop
33
- , optparse-applicative
34
44
35
45
, hspec
36
46
, silently
47
+
48
+ source-repository head
49
+ type : git
50
+ location : git://github.com/zalora/args-generics
You can’t perform that action at this time.
0 commit comments