aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--aquifer-frontend.cabal19
-rw-r--r--aquifer.cabal98
2 files changed, 106 insertions, 11 deletions
diff --git a/aquifer-frontend.cabal b/aquifer-frontend.cabal
index aae4a84..592aebb 100644
--- a/aquifer-frontend.cabal
+++ b/aquifer-frontend.cabal
@@ -1,16 +1,15 @@
-name: aquifer-frontend
+name: aquifer
version: 0.1.0.0
-synopsis: Initial project template from stack
-description: Please see README.md
-homepage: http://github.com/benkard/aquifer-frontend#readme
+synopsis: Personal water consumption tracker.
+description: .
+homepage: https://pente.benkard.de/tag/aquifer/
license: AGPL-3
license-file: COPYING.AGPL
author: Matthias Andreas Benkard
maintainer: code@mulk.eu
-copyright: AllRightsReserved
+copyright: Copyright 2016 Matthias Andreas Benkard
category: Web
build-type: Simple
--- extra-source-files:
cabal-version: >=1.10
library
@@ -22,8 +21,6 @@ library
, reflex
, reflex-dom
, ghcjs-dom
--- , reflex-diagrams
--- , ghcjs-servant-client
, prompt
, lens
, classy-prelude
@@ -84,15 +81,15 @@ library
, DoAndIfThenElse
--, Generics
-executable aquifer-frontend-output
+executable aquifer-output
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall
build-depends: base
, ghcjs-base
- , aquifer-frontend
+ , aquifer
default-language: Haskell2010
source-repository head
type: git
- location: https://github.com/benkard/aquifer-frontend \ No newline at end of file
+ location: https://pente.benkard.de/diffusion/AF/aquifer.git
diff --git a/aquifer.cabal b/aquifer.cabal
new file mode 100644
index 0000000..55176e8
--- /dev/null
+++ b/aquifer.cabal
@@ -0,0 +1,98 @@
+name: aquifer
+version: 0.1.0.0
+synopsis: Initial project template from stack
+description: Please see README.md
+homepage: https://pente.benkard.de/tag/aquifer/
+license: AGPL-3
+license-file: COPYING.AGPL
+author: Matthias Andreas Benkard
+maintainer: code@mulk.eu
+copyright: AllRightsReserved
+category: Web
+build-type: Simple
+-- extra-source-files:
+cabal-version: >=1.10
+
+library
+ hs-source-dirs: src
+ ghc-options: -Wall
+ exposed-modules: Lib
+ build-depends: base >= 4.7 && < 5
+ , ghcjs-base
+ , reflex
+ , reflex-dom
+ , ghcjs-dom
+-- , reflex-diagrams
+-- , ghcjs-servant-client
+ , prompt
+ , lens
+ , classy-prelude
+ , containers-unicode-symbols
+ , base-unicode-symbols
+ , array
+ , time
+ , safe
+ , scientific
+ , mtl
+ , free
+ , either
+ , aeson
+ , containers
+ , here
+ default-language: Haskell2010
+ default-extensions: PostfixOperators
+ , OverloadedStrings
+ , MonadComprehensions
+ , RecursiveDo
+ , GADTs
+ , GeneralizedNewtypeDeriving
+ , ParallelListComp
+ , MultiParamTypeClasses
+ , NoMonomorphismRestriction
+ , FunctionalDependencies
+ , RankNTypes
+ , ExistentialQuantification
+ , ScopedTypeVariables
+ , ImplicitParams
+ , FlexibleContexts
+ , FlexibleInstances
+ , EmptyDataDecls
+ , KindSignatures
+ , BangPatterns
+ , TypeSynonymInstances
+ , TemplateHaskell
+ , Arrows
+ , PatternGuards
+ , MagicHash
+ , TypeFamilies
+ , UnicodeSyntax
+ , StandaloneDeriving
+ , TypeOperators
+ , RelaxedPolyRec
+ , UnboxedTuples
+ , ExtendedDefaultRules
+ , DeriveDataTypeable
+ , PackageImports
+ , ConstrainedClassMethods
+ , QuasiQuotes
+ , TransformListComp
+ , ViewPatterns
+ , TupleSections
+ , DeriveFunctor
+ , DeriveTraversable
+ , DeriveFoldable
+ , DoAndIfThenElse
+ --, Generics
+
+executable aquifer-output
+ hs-source-dirs: app
+ main-is: Main.hs
+ ghc-options: -Wall
+ build-depends: base
+ , ghcjs-base
+ , aquifer
+ default-language: Haskell2010
+
+source-repository head
+ type: git
+ location: https://pente.benkard.de/diffusion/AF/aquifer.git \ No newline at end of file