-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstack2cabal.cabal
35 lines (34 loc) · 1.13 KB
/
stack2cabal.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
name: stack2cabal
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/githubuser/stack2cabal#readme
license: MIT
license-file: LICENSE
author: Lars Bruenjes
maintainer: [email protected]
copyright: 2017 Lars Bruenjes
category: Build
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable stack2cabal
hs-source-dirs: src
main-is: Main.hs
other-modules: Stack2Cabal
, Stack2Cabal.Compiler
, Stack2Cabal.Config
, Stack2Cabal.Constraints
, Stack2Cabal.Git
, Stack2Cabal.Packages
, Stack2Cabal.Util
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, attoparsec
, directory
, filepath
, optparse-applicative
, process
, text
, yaml
ghc-options: -Wall -O2