dib-0.7.2: dib.cabal
name: dib
version: 0.7.2
cabal-version: >= 1.10
category: Development
build-type: Simple
license: MIT
license-file: LICENSE
author: Brett Lajzer
maintainer: Brett Lajzer
synopsis: A simple, forward build system.
description: Dib is a simple, forward build system consisting of a library and a driver application. Build scripts are written in Haskell instead of a bespoke language.
source-repository head
type: git
location: https://github.com/blajzer/dib.git
source-repository this
type: git
location: https://github.com/blajzer/dib.git
tag: 0.7.2
library
build-depends: base >= 4.8 && < 4.11, text, containers, mtl, directory, time, process, filepath, cereal, bytestring, digest, ansi-terminal
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Dib, Dib.Gatherers, Dib.Stage, Dib.Target, Dib.Types, Dib.Scanners.CDepScanner, Dib.Builders.C, Dib.Builders.Copy, Dib.Builders.Simple, Dib.Util
default-extensions: OverloadedStrings
default-language: Haskell2010
executable dib
build-depends: base >= 4.8 && < 4.11, containers, mtl, time, directory, filepath, process
ghc-options: -Wall
hs-source-dirs: .
main-is: Main.hs
default-language: Haskell2010