-
Notifications
You must be signed in to change notification settings - Fork 4
/
essence-of-live-coding-tutorial.cabal
53 lines (46 loc) · 1.83 KB
/
essence-of-live-coding-tutorial.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
49
50
51
52
53
cabal-version: >=1.10
name: essence-of-live-coding-tutorial
version: 0.2.4
synopsis: Tutorial application for the library essence-of-live-coding.
description:
essence-of-live-coding is a general purpose and type safe live coding framework.
.
You can run programs in it, and edit, recompile and reload them while they're running.
Internally, the state of the live program is automatically migrated when performing hot code swap.
.
The library also offers an easy to use FRP interface.
It is parametrized by its side effects,
separates data flow cleanly from control flow,
and allows to develop live programs from reusable, modular components.
There are also useful utilities for debugging and quickchecking.
.
This package provides an executable that serves as the scaffolding for a live coding tutorial at ICFP 2020.
homepage: https://www.manuelbaerenz.de/#computerscience
category: FRP, Live coding
author: Manuel Bärenz
maintainer: [email protected]
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files: CHANGELOG.md
extra-doc-files: README.md
flag pulse
description: Build with pulse audio backend on linux.
source-repository head
type: git
location: [email protected]:turion/essence-of-live-coding-tutorial.git
executable essence-of-live-coding-tutorial
main-is: Main.hs
build-depends:
base >= 4.11 && < 5
, gloss >= 1.13
, vector-space >= 0.16
, bytestring >= 0.10
, utf8-string >= 1.0.1
, essence-of-live-coding >= 0.2.4
, essence-of-live-coding-gloss >= 0.2.4
, essence-of-live-coding-warp >= 0.2.4
if os(linux) && flag(pulse)
build-depends:
essence-of-live-coding-pulse >= 0.2.4
default-language: Haskell2010