This repository has been archived by the owner on Nov 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcabal-env.cabal
63 lines (56 loc) · 1.77 KB
/
cabal-env.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
cabal-version: 2.2
name: cabal-env
version: 0.1
synopsis: Manage GHC package-environments with cabal-install
category: Development
description:
GHC-8.0 support package environment files.
Those could be used to view parts of global @cabal-install@ package store.
.
Tuned for Oleg's preference, but has some knobs still.
license: GPL-3.0-or-later AND BSD-3-Clause
license-file: LICENSE
author: Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.1
extra-source-files: Changelog.md
source-repository head
type: git
location: https://github.com/phadej/cabal-env.git
library cabal-env-internal
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
CabalEnv.Main
CabalEnv.Prelude
CabalEnv.FakePackage
CabalEnv.Utils
other-modules: Paths_cabal_env
autogen-modules: Paths_cabal_env
-- dependencies in library
build-depends:
, base ^>=4.11.1.0 || ^>=4.12.0.0 || ^>=4.13.0.0
, bytestring ^>=0.10.8.2
, Cabal ^>=3.0.0.0
, cabal-plan ^>=0.6.0.0
, containers ^>=0.5.11.0 || ^>=0.6.0.1
, directory ^>=1.3.1.5
, filepath ^>=1.4.2
, Glob ^>=0.10.0
, parsec ^>=3.1.13.0
, pretty ^>=1.1.3.6
, process
, process-extras
, split
, temporary ^>=1.3
-- extra dependencies
build-depends: optparse-applicative >=0.14.3.0 && <0.16
executable cabal-env
default-language: Haskell2010
hs-source-dirs: cli
main-is: Main.hs
ghc-options: -Wall -threaded
build-depends:
, base
, cabal-env-internal