aboutsummaryrefslogtreecommitdiff
path: root/cabal-helper.cabal
blob: b25a62c09b8945f0051141e888fa492f7fec12fd (plain) (blame)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name:                cabal-helper
version:             0.6.3.0
synopsis:            Simple interface to some of Cabal's configuration state used by ghc-mod
description:
    @cabal-helper@ provides a library which wraps the internal use of
    anexecutable to lift the restrictions imposed by linking against versions of
    GHC before @7.10@. This has the pleasant side effect of isolating the user
    from having to deal with Cabal version changes manually as @cabal-helper@
    can simply recompile it's helper program automatically as needed.
    .
    @cabal-helper@ uses a wrapper executable to compile the actual cabal-helper
    executable at runtime while linking against an arbitrary version of
    Cabal. This runtime-compiled helper executable is then used to extract
    various bits and peices from Cabal\'s on disk state (dist/setup-config)
    written by it's configure command.
    .
    In addition to this the wrapper executable also supports installing any
    version of Cabal from hackage in case it cannot be found in any available
    package database. The wrapper installs these instances of the Cabal library
    into a private package database so as to not interfere with the user's
    packages.
    .
    Furthermore the wrapper supports one special case namely reading a state
    file for Cabal itself. This is needed as Cabal compiles it's Setup.hs using
    itself and not using any version of Cabal installed in any package database.
    .
    @cabal-helper@ can compile with @Cabal >= 1.14@ but requires @Cabal >= 1.16@
    at runtime.

license:             AGPL-3
license-file:        LICENSE
author:              Daniel Gröber <dxld@darkboxed.org>
maintainer:          dxld@darkboxed.org
category:            Distribution
build-type:          Custom
cabal-version:       >=1.10
extra-source-files:  CabalHelper/Main.hs
                     CabalHelper/Licenses.hs

source-repository head
  type:     git
  location: https://github.com/DanielG/cabal-helper.git

library
  exposed-modules:     Distribution.Helper
  Other-Modules:       Paths_cabal_helper
                     , CabalHelper.Types
                     , CabalHelper.Sandbox
  default-language:    Haskell2010
  GHC-Options:         -Wall
  Build-Depends:       base >= 4.5 && < 5
                     , Cabal >= 1.14 && < 1.23
                     , directory
                     , filepath
                     , transformers
                     , mtl
                     , process
                     , ghc-prim

Executable cabal-helper-wrapper
  Default-Language:    Haskell2010
  Other-Extensions:    TemplateHaskell
  Main-Is:             CabalHelper/Wrapper.hs
  Other-Modules:       Paths_cabal_helper
                       CabalHelper.Types
                       CabalHelper.Common
                       CabalHelper.GuessGhc
                       CabalHelper.Data
                       CabalHelper.Compile
                       CabalHelper.Log
                       CabalHelper.Sandbox
  GHC-Options:         -Wall
  X-Install-Target:    $libexecdir
  Build-Depends:       base >= 4.5 && < 5
                     , bytestring
                     , Cabal >= 1.14 && < 1.23
                     , directory
                     , filepath
                     , process
                     , transformers
                     , template-haskell
                     , temporary
                     , utf8-string
                     , ghc-prim

Test-Suite spec
  Default-Language:    Haskell2010
  Type:                exitcode-stdio-1.0
  Main-Is:             Spec.hs
  Hs-Source-Dirs:      tests, .
  GHC-Options:         -Wall
  Build-Tools:         cabal
  Build-Depends:       base >= 4.5 && < 5
                     , cabal-helper
                     , extra
                     , unix
                     , Cabal >= 1.14 && < 1.23
                     , directory
                     , filepath
                     , transformers
                     , mtl
                     , process
                     , ghc-prim
                     , bytestring
                     , utf8-string
                     , template-haskell
                     , temporary