aboutsummaryrefslogtreecommitdiff
path: root/ire.cabal
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2016-12-29 15:20:15 +0300
committerIgor Pashev <pashev.igor@gmail.com>2017-04-20 15:32:44 +0300
commit598a03684324eeac37e51f7606f8a27e1e9603e6 (patch)
tree0ff64573ab6fd9149cc45a928781146a4e1e359b /ire.cabal
downloadire-598a03684324eeac37e51f7606f8a27e1e9603e6.tar.gz
Initial release0.0.0
Diffstat (limited to 'ire.cabal')
-rw-r--r--ire.cabal59
1 files changed, 59 insertions, 0 deletions
diff --git a/ire.cabal b/ire.cabal
new file mode 100644
index 0000000..9d87865
--- /dev/null
+++ b/ire.cabal
@@ -0,0 +1,59 @@
+name: ire
+version: 0.0.0
+license: PublicDomain
+license-file: LICENSE
+author: Igor Pashev <pashev.igor@gmail.com>
+maintainer: Igor Pashev <pashev.igor@gmail.com>
+category: Web
+build-type: Simple
+cabal-version: >=1.20
+extra-source-files:
+ README.md
+ ire.example.yml
+
+data-files:
+ static/external/bootstrap/css/*.min.css
+ static/external/bootstrap/js/*.min.js
+ static/external/jquery-2.2.4.min.js
+ static/wire.css
+ static/wire.js
+ webui.html
+
+executable ire
+ hs-source-dirs: src
+ main-is: Main.hs
+ default-language: Haskell2010
+ ghc-options: -Wall -static -threaded
+ extra-libraries: darknet
+
+ other-modules:
+ IRE.Application
+ IRE.Application.YOLO
+ IRE.Config
+ IRE.Logging
+ IRE.Server
+ IRE.YOLO
+
+ build-depends:
+ base >=4.8 && < 50
+ , aeson
+ , array
+ , bytestring
+ , concurrent-extra
+ , docopt
+ , filepath
+ , http-types
+ , interpolatedstring-perl6
+ , mtl
+ , network
+ , scotty >= 0.10
+ , text
+ , unix
+ , unordered-containers
+ , vector
+ , wai
+ , wai-extra
+ , wai-middleware-static >= 0.8
+ , warp >= 3.2
+ , yaml >= 0.8.4
+