canteven-config-1.0.0.0: canteven-config.cabal
-- Initial canteven-config.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: canteven-config
version: 1.0.0.0
synopsis: A pattern for configuring programs.
description: Turns out, all of our executables shared the same sort of
pattern for extracting configuration out of the
environment: find a YAML config file based on the command
line arguments and parse that file into a haskell value using
the yaml package. This package makes that process super
trivial.
license: Apache-2.0
license-file: LICENSE
author: Rick Owens
maintainer: rick@owenssoftware.com
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules:
Canteven.Config
-- other-modules:
-- other-extensions:
build-depends:
base >= 4 && < 5,
unix,
yaml
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall