name: dib version: 0.7.1 cabal-version: >= 1.6 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.1 library build-depends: base >= 4.4 && < 4.11, text, containers, mtl, directory, time, process, filepath, cereal, bytestring, digest 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 extensions: OverloadedStrings executable dib build-depends: base >= 4.4 && < 4.11, containers, mtl, time, directory, filepath ghc-options: -Wall hs-source-dirs: . main-is: Main.hs