-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy-file-into-git.cabal
31 lines (30 loc) · 1013 Bytes
/
copy-file-into-git.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: copy-file-into-git
version: 0.1.0.0
-- synopsis:
-- description:
license: AGPL-3
license-file: LICENSE
author: Steven Taschuk
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable copy-file-into-git
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <4.9
, bytestring == 0.10.*
, directory == 1.2.*
, exceptions == 0.8.*
, filepath == 1.4.*
, gitlib == 3.1.*
, gitlib-libgit2 == 3.1.*
, monad-loops == 0.4.*
, tagged == 0.8.*
, text == 1.2.*
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -Wall -O2