]> git.rkrishnan.org Git - functorrent.git/commitdiff
add dependencies
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 3 Feb 2015 09:23:35 +0000 (14:53 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 3 Feb 2015 09:23:35 +0000 (14:53 +0530)
deluge.cabal
src/Main.hs [new file with mode: 0644]

index ec2e1275668eaf314c05a9ec62410c614bea8828..0dd22a01c8c5a00cd9658447636c4289cdfe4555 100644 (file)
@@ -4,7 +4,7 @@
 name:                deluge
 version:             0.1.0.0
 synopsis:            A Bit-torrent client
--- description:         
+description:         A bittorrent client
 license:             GPL-3
 license-file:        LICENSE
 author:              Ramakrishnan Muthukrishnan
@@ -19,6 +19,9 @@ executable deluge
   main-is:             Main.hs
   -- other-modules:       
   -- other-extensions:    
-  build-depends:       base >=4.6 && <4.7
+  build-depends:       base >=4.6 && <4.7,
+                       bytestring,
+                       attoparsec
   hs-source-dirs:      src
+  ghc-options:         -Wall
   default-language:    Haskell2010
\ No newline at end of file
diff --git a/src/Main.hs b/src/Main.hs
new file mode 100644 (file)
index 0000000..4af7af8
--- /dev/null
@@ -0,0 +1,3 @@
+module Main where
+
+main = putStrLn "hello"