THRIFT-560. haskell: Add tutorial
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@898015 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/tutorial/hs/ThriftTutorial.cabal b/tutorial/hs/ThriftTutorial.cabal
new file mode 100644
index 0000000..381f32a
--- /dev/null
+++ b/tutorial/hs/ThriftTutorial.cabal
@@ -0,0 +1,29 @@
+Name: ThriftTutorial
+Version: 0.1.0
+Cabal-Version: >= 1.2
+License: Apache2
+Category: Foreign
+Build-Type: Simple
+Synopsis: Thrift Tutorial library package
+
+Executable HaskellServer
+ Main-is: HaskellServer.hs
+ Hs-Source-Dirs:
+ ., ../gen-hs/
+ Build-Depends:
+ base >=4, network, ghc-prim, containers, Thrift
+ ghc-options:
+ -fglasgow-exts
+ Extensions:
+ DeriveDataTypeable
+
+Executable HaskellClient
+ Main-is: HaskellClient.hs
+ Hs-Source-Dirs:
+ ., ../gen-hs/
+ Build-Depends:
+ base >=4, network, ghc-prim, containers, Thrift
+ ghc-options:
+ -fglasgow-exts
+ Extensions:
+ DeriveDataTypeable