mirror of
https://github.com/input-output-hk/foliage.git
synced 2024-11-25 07:44:24 +03:00
080197e9e2
1. Foliage takes as input a complete description of the index, where source distributions and revisions come with a timestamp. This allows us to recreate the entire index in a reproducible way. 2. Added a experimental command to import an index from a Hackage (as downloaded with Cabal). This was originally a testing/development need but there might be different use cases.
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
cabal-version: 2.4
|
|
name: foliage
|
|
version: 0.4.0.0
|
|
maintainer: andrea@andreabedini.com
|
|
author: Andrea Bedini
|
|
|
|
executable foliage
|
|
main-is: Main.hs
|
|
hs-source-dirs: app
|
|
other-modules:
|
|
Foliage.CmdCreateKeys
|
|
Foliage.CmdBuild
|
|
Foliage.CmdImportHackage
|
|
Foliage.HackageSecurity
|
|
Foliage.Meta
|
|
Foliage.Options
|
|
Foliage.Package
|
|
Foliage.Shake
|
|
Foliage.Shake.Oracle
|
|
Foliage.Time
|
|
Foliage.Utils
|
|
|
|
default-language: Haskell2010
|
|
default-extensions:
|
|
ImportQualifiedPost LambdaCase NamedFieldPuns ViewPatterns
|
|
|
|
ghc-options: -Wall
|
|
build-depends:
|
|
base >=4.14.3.0 && <4.15,
|
|
aeson >=2.0.3.0 && <2.1,
|
|
base64 >=0.4.2.3 && <0.5,
|
|
bytestring >=0.10.12.0 && <0.11,
|
|
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,
|
|
optparse-applicative >=0.17.0.0 && <0.18,
|
|
shake >=0.19.6 && <0.20,
|
|
tar >=0.5.1.1 && <0.6,
|
|
text >=1.2.4.1 && <1.3,
|
|
time >=1.9.3 && <1.10,
|
|
time-compat >=1.9.6.1 && <1.10,
|
|
tomland >=1.3.3.1 && <1.4,
|
|
zlib >=0.6.2.3 && <0.7
|