blob: 49ae948c44ac86129d4f27aaf0f0b747b1042f0a (
plain)
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
|
Name: ghc-cabal
Version: 0.1
Copyright: XXX
License: BSD3
-- XXX License-File: LICENSE
Author: XXX
Maintainer: XXX
Synopsis: A utility for producing package metadata from Cabal package
descriptions for GHC's build system
Description: This program is responsible for producing @package-data.mk@ files
for Cabal packages. These files are used by GHC's @make@-based
build system to determine the source files included by package,
package dependencies, and other metadata.
Category: Development
build-type: Simple
cabal-version: >=1.10
Executable ghc-cabal
Default-Language: Haskell2010
Main-Is: Main.hs
Build-Depends: base >= 3 && < 5,
bytestring >= 0.10 && < 0.11,
Cabal >= 3.0 && < 3.4,
directory >= 1.1 && < 1.4,
filepath >= 1.2 && < 1.5
|