2022-10-24 10:38:46 +03:00
|
|
|
cabal-version: 2.4
|
|
|
|
name: foliage
|
|
|
|
description: Foliage is a tool to create custom Haskell package repositories, in a fully reproducible way.
|
|
|
|
version: 0.6.0.0
|
|
|
|
maintainer: andrea@andreabedini.com
|
|
|
|
author: Andrea Bedini
|
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
|
|
|
extra-source-files: templates/*.mustache
|
2022-04-11 12:25:56 +03:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/andreabedini/foliage
|
2022-03-09 16:29:23 +03:00
|
|
|
|
|
|
|
executable foliage
|
2022-03-28 07:53:39 +03:00
|
|
|
main-is: Main.hs
|
|
|
|
hs-source-dirs: app
|
|
|
|
other-modules:
|
2022-10-10 07:14:56 +03:00
|
|
|
Distribution.Aeson
|
|
|
|
Distribution.PackageDescription.FieldGrammar.Copy
|
2022-05-19 09:42:41 +03:00
|
|
|
Distribution.Types.Orphans
|
2022-03-28 07:53:39 +03:00
|
|
|
Foliage.CmdBuild
|
2022-05-18 07:12:20 +03:00
|
|
|
Foliage.CmdCreateKeys
|
2022-05-19 10:01:57 +03:00
|
|
|
Foliage.CmdImportIndex
|
2022-03-28 07:53:39 +03:00
|
|
|
Foliage.HackageSecurity
|
|
|
|
Foliage.Meta
|
2022-10-14 04:28:31 +03:00
|
|
|
Foliage.Meta.Aeson
|
2022-03-28 07:53:39 +03:00
|
|
|
Foliage.Options
|
2022-10-10 10:30:11 +03:00
|
|
|
Foliage.Pages
|
2022-09-22 19:54:35 +03:00
|
|
|
Foliage.PrepareSource
|
2022-10-05 10:11:48 +03:00
|
|
|
Foliage.PrepareSdist
|
2022-05-16 09:39:53 +03:00
|
|
|
Foliage.RemoteAsset
|
2022-03-28 07:53:39 +03:00
|
|
|
Foliage.Shake
|
|
|
|
Foliage.Time
|
2022-05-18 07:12:20 +03:00
|
|
|
Foliage.UpdateCabalFile
|
2022-10-14 04:28:31 +03:00
|
|
|
Foliage.Utils.Aeson
|
2022-09-29 16:33:26 +03:00
|
|
|
Network.URI.Orphans
|
2022-03-28 07:53:39 +03:00
|
|
|
|
|
|
|
default-language: Haskell2010
|
2022-03-09 16:29:23 +03:00
|
|
|
default-extensions:
|
2022-03-28 07:53:39 +03:00
|
|
|
ImportQualifiedPost LambdaCase NamedFieldPuns ViewPatterns
|
|
|
|
|
|
|
|
ghc-options: -Wall
|
2022-03-09 16:29:23 +03:00
|
|
|
build-depends:
|
2022-08-19 12:53:02 +03:00
|
|
|
base >=4.14.3.0 && <4.18,
|
|
|
|
aeson >=2.0.3.0 && <2.2,
|
|
|
|
base64 >=0.4.2.3 && <0.5,
|
2022-10-26 09:09:17 +03:00
|
|
|
binary,
|
2022-08-19 12:53:02 +03:00
|
|
|
bytestring >=0.10.12.0 && <0.12,
|
2022-08-31 14:17:05 +03:00
|
|
|
Cabal >=3.8 && <3.9,
|
|
|
|
Cabal-syntax >=3.8 && <3.9,
|
2022-09-22 13:12:16 +03:00
|
|
|
cabal-install >=3.8 && <3.9,
|
2022-08-19 12:53:02 +03:00
|
|
|
containers >=0.6.5.1 && <0.7,
|
|
|
|
cryptohash-sha256 >=0.11.102.1 && <0.12,
|
|
|
|
directory >=1.3.6.0 && <1.4,
|
|
|
|
filepath >=1.4.2.1 && <1.5,
|
|
|
|
hackage-security >=0.6.2.1 && <0.7,
|
2022-09-29 16:33:26 +03:00
|
|
|
network-uri ^>=2.6.4.1,
|
2022-08-19 12:53:02 +03:00
|
|
|
optparse-applicative >=0.17.0.0 && <0.18,
|
|
|
|
shake >=0.19.6 && <0.20,
|
2022-10-10 07:14:56 +03:00
|
|
|
stache,
|
2022-08-19 12:53:02 +03:00
|
|
|
tar >=0.5.1.1 && <0.6,
|
|
|
|
text >=1.2.4.1 && <2.1,
|
|
|
|
time >=1.9.3 && <1.13,
|
|
|
|
time-compat >=1.9.6.1 && <1.10,
|
|
|
|
tomland >=1.3.3.1 && <1.4,
|
2022-08-23 15:11:15 +03:00
|
|
|
with-utf8 >=1.0.2.3 && <1.1,
|
2022-08-19 12:53:02 +03:00
|
|
|
zlib >=0.6.2.3 && <0.7
|