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 108 109 110 111 112 113 114 115 116
|
cabal-version: 2.2
name: cabal-dev-scripts
version: 0
synopsis: Dev scripts for cabal development
description: This package provides a tools for Cabal development
homepage: http://www.haskell.org/cabal/
license: BSD-3-Clause
license-file: LICENSE
author: Cabal Development Team <cabal-devel@haskell.org>
category: Distribution
build-type: Simple
executable gen-extra-source-files
default-language: Haskell2010
main-is: GenExtraSourceFiles.hs
hs-source-dirs: src
build-depends:
, base >=4.10 && <4.15
, bytestring
, Cabal >=2.2 && <3.3
, directory
, filepath
, process
executable gen-spdx
default-language: Haskell2010
main-is: GenSPDX.hs
other-modules: GenUtils
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, aeson ^>=1.4.1.0 || ^>=1.5.2.0
, base >=4.10 && <4.15
, bytestring
, containers
, Diff ^>=0.4
, lens ^>=4.18.1 || ^>=4.19.1
, optparse-applicative ^>=0.15.1.0 || ^>=0.16.0.0
, text
, zinza ^>=0.2
executable gen-spdx-exc
default-language: Haskell2010
main-is: GenSPDXExc.hs
other-modules: GenUtils
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, aeson ^>=1.4.1.0 || ^>=1.5.2.0
, base >=4.10 && <4.15
, bytestring
, containers
, Diff ^>=0.4
, lens ^>=4.18.1 || ^>=4.19.1
, optparse-applicative ^>=0.15.1.0 || ^>=0.16.0.0
, text
, zinza ^>=0.2
executable gen-validate
default-language: Haskell2010
main-is: GenValidate.hs
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, base
, bytestring
, HsYAML ^>=0.2.1.0
, zinza ^>=0.2
executable gen-validate-dockerfile
default-language: Haskell2010
main-is: GenValidateDockerfile.hs
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, base
, bytestring
, containers
, HsYAML ^>=0.2.1.0
, zinza ^>=0.2
executable gen-cabal-macros
default-language: Haskell2010
main-is: GenCabalMacros.hs
other-modules: Capture
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, base
, bytestring
, Cabal
, syb ^>=0.7.1
, template-haskell
, zinza ^>=0.2
executable gen-cabal-install-cabal
default-language: Haskell2010
main-is: GenCabalInstallCabal.hs
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, base
, bytestring
, Cabal
, zinza ^>=0.2
executable analyse-imports
default-language: Haskell2010
main-is: AnalyseImports.hs
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, base
, containers
, regex-applicative
, haskell-lexer ^>=1.1
|