packages feed

goal-core-0.1: goal-core.cabal

name: goal-core
version: 0.1
synopsis: Core imports for Geometric Optimization Libraries.
description: Core provides a bunch of convenience functions, basic exports, as
    well as plotting functionality, which are independent of the rest of the
    library.
license: BSD3
license-file: LICENSE
author: Sacha Sokoloski
maintainer: sokolo@mis.mpg.de
category: Math
build-type: Simple
cabal-version: >=1.10

library
    exposed-modules:
        Goal.Core,
        Goal.Core.Plot,
        Goal.Core.Plot.Contour
    build-depends:
        base==4.*,
        data-default-class==0.0.*,
        lens==4.*,
        containers==0.5.*,
        colour==2.3.*,
        gtk==0.14.*,
        cairo==0.13.*,
        Chart==1.5.*,
        Chart-cairo==1.5.*,
        Chart-gtk==1.5.*
    default-extensions: TemplateHaskell
    default-language: Haskell2010
    ghc-options: -O2 -Wall -fno-warn-type-defaults -fno-warn-missing-signatures

executable contours
    main-is: contours.hs
    hs-source-dirs: scripts
    ghc-options: -Wall -O2 -threaded -rtsopts -fno-warn-type-defaults
        -fno-warn-missing-signatures -fno-warn-unused-do-bind
    build-depends:
        base==4.*,
        goal-core==0.1
    default-language: Haskell2010