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
|
cabal-version: >=1.10
name: lambda-gtk
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: BSD3
license-file: LICENSE
author: Joe Crayne
maintainer: oh.hello.joe@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
executable lambda-gtk
main-is: gix.hs
other-modules: LambdaCube.Gtk LambdaHello
extensions: NondecreasingIndentation
other-extensions: OverloadedLabels, OverloadedLists, OverloadedStrings
build-depends: base, containers >=0.5 && <0.6, bytestring >=0.10 && <0.11,
vector, aeson, JuicyPixels,
-- rendering
lambdacube-ir, lambdacube-gl, OpenGL,
-- GUI
gi-gdk , gi-glib , gi-gobject , gi-gtk , haskell-gi-base
-- , gi-gtk-declarative, gi-gtk-declarative-app-simple,
-- hs-source-dirs:
default-language: Haskell2010
|