File: dht.cabal

package info (click to toggle)
pkg-haskell-tools 0.12.5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: haskell: 691; sh: 591; perl: 308; makefile: 10
file content (37 lines) | stat: -rw-r--r-- 899 bytes parent folder | download | duplicates (2)
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