-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkurt.cabal
48 lines (45 loc) · 1.29 KB
/
kurt.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: kurt
version: 0.0.4
category: AI, Game
synopsis: Lefants haskell go engine
description:
Lefants haskell go engine
license: GPL
license-file: COPYRIGHT
copyright: (c) 2010 Fabian Linzberger
author: Fabian Linzberger <[email protected]>
maintainer: Fabian Linzberger <[email protected]>
homepage: http://lefant.net/
stability: experimental
tested-with: GHC==7.8.3
cabal-version: >= 1.6
build-type: Simple
data-files:
extra-tmp-files:
extra-source-files:
COPYING
README.md
executable kurt
main-is: kurt.hs
hs-source-dirs: src
build-depends: base >= 3 && < 5
, cmdargs
, containers >= 0.3
, deepseq
, mwc-random
, parallel
, parsec >= 3
, primitive
, random
, rosezipper < 0.2
, time
, unordered-containers
default-language: Haskell2010
default-extensions: BangPatterns
, DeriveDataTypeable
, FlexibleInstances
, ScopedTypeVariables
ghc-options: -O2 -Wall -Werror -rtsopts -threaded -debug -funbox-strict-fields
source-repository head
type: git
location: git://github.com/lefant/kurt