-
Notifications
You must be signed in to change notification settings - Fork 1
/
cabal2stack.cabal
46 lines (41 loc) · 1.4 KB
/
cabal2stack.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
cabal-version: 3.0
name: cabal2stack
version: 0
synopsis: Create stack.yaml from cabal-install's plan.json
description: Create stack.yaml from cabal-install's plan.json.
category: Development
copyright: 2022 IRIS Connect Ltd
author: Oleg Grenrus <oleg@well-typed.com>
maintainer: Well-Typed <info@well-typed.com>
license: BSD-3-Clause
license-file: LICENSE
extra-source-files: README.md
homepage: https://github.com/iconnect/cabal2stack
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.5 || ==9.4.3
source-repository head
type: git
location: git://github.com/iconnect/cabal2stack.git
executable cabal2stack
default-language: Haskell2010
ghc-options: -Wall
main-is: cabal2stack.hs
hs-source-dirs: src
-- boot dependencies
build-depends:
, base >=4.12 && <4.18
, bytestring ^>=0.10.8.2 || ^>=0.11.3.0
, containers ^>=0.6.0.1
, directory ^>=1.3.3.0
, filepath ^>=1.4.2.1
, process ^>=1.6.5.0
, text >=1.2.3.0 && <2.1
, transformers ^>=0.5.6.2
-- other dependencies
build-depends:
, aeson >= 2.0 && < 2.2
, cabal-plan ^>=0.7.2.1
, HsYAML ^>=0.2.1.1
, HsYAML-aeson ^>=0.2.0.1
, optics-core ^>=0.4
, optics-extra ^>=0.4
, optparse-applicative ^>=0.17.0.0