diff options
author | Hendrik Jaeger <henk@frustcomp> | 2014-08-31 03:18:50 +0200 |
---|---|---|
committer | Hendrik Jaeger <henk@frustcomp> | 2014-08-31 03:18:50 +0200 |
commit | ab208abda00b7bb4234a9b717ddf4128eea2618f (patch) | |
tree | 7796d3bd0879c0f210d5c6ea0b3b39f733b6840e /diddohs.cabal | |
parent | b094c1ea9aa6fab77ab74ecac4bea17e915c7544 (diff) |
new file: diddohs.cabal
new file: docs/LICENSE
infrastructure files
Diffstat (limited to 'diddohs.cabal')
-rw-r--r-- | diddohs.cabal | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/diddohs.cabal b/diddohs.cabal new file mode 100644 index 0000000..253fc7b --- /dev/null +++ b/diddohs.cabal @@ -0,0 +1,51 @@ +-- Initial diddohs.cabal generated by cabal init. For further +-- documentation, see http://haskell.org/cabal/users-guide/ + +name: diddohs + +-- The package version. See the Haskell package versioning policy (PVP) +-- for standards guiding when and how versions should be incremented. +-- http://www.haskell.org/haskellwiki/Package_versioning_policy +-- PVP summary: +-+------- breaking API changes +-- | | +----- non-breaking API additions +-- | | | +--- code changes with no API change +version: 0.0.3 +synopsis: Time/Task Tracking, Analysis, Reporting +description: Tool for tracking and reporting time/task +homepage: https://projects.netwichtig.de/projects/sw-diddohs/ +license: BSD3 +license-file: LICENSE +author: Hendrik Jaeger +maintainer: code AT henk DOT geekmail DOT org +-- copyright: +category: Data +build-type: Simple +cabal-version: >=1.8 + +executable diddohs + main-is: Main.hs + hs-source-dirs: src + -- other-modules: + build-depends: base ==4.6.* + , old-locale + , time + , text + , containers + , parsec + + ghc-prof-options: -Wall -Werror -rtsopts -prof -fprof-auto -fhpc + ghc-options: -Wall -Werror -rtsopts -prof -fprof-auto -fhpc +-- ghc-options: -Wall -rtsopts -eventlog -debug +-- ghc-options: -Wall + +source-repository head + type: git + location: git://git.netwichtig.de/diddohs + +source-repository head + type: git + location: http://git.netwichtig.de/diddohs + +--test-suite Tests +-- hs-source-dirs: test + |