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
|
name: dht
version: 0.1
synopsis: Debian Haskell Tools
description:
A set of tools, implemented in Haskell, and used by the Debian Haskell Team.
license: MIT
-- license-file: LICENSE
author: Joachim Breitner
maintainer: nomeata@debian.org
copyright: 2015 Joachim Breitner
category: Distribution
build-type: Simple
cabal-version: >=1.10
executable make-all
main-is: make-all.hs
other-modules:
Utils
Development.Shake.Fancy
build-depends:
base >= 4.6,
containers,
directory,
transformers,
filepath,
time,
unix,
parsec,
text,
shake >= 0.16,
extra >= 1.1,
debian >= 3.89,
optparse-applicative >= 0.16,
split == 0.2.*,
concurrent-output >= 1.7
hs-source-dirs: src
default-language: Haskell2010
|