-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatspkg.dhall
More file actions
32 lines (31 loc) · 1.01 KB
/
atspkg.dhall
File metadata and controls
32 lines (31 loc) · 1.01 KB
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
let prelude =
https://hackage.haskell.org/package/ats-pkg/src/dhall/atspkg-prelude.dhall sha256:69bdde38a8cc01c91a1808ca3f45c29fe754c9ac96e91e6abd785508466399b4
in prelude.compilerMod
prelude.gcc
( prelude.default
⫽ { bench =
[ prelude.bin
⫽ { src = "bench/wc-bench.dats"
, target = "${prelude.atsProject}/wc-bench"
, gcBin = True
}
]
, test =
[ prelude.bin
⫽ { src = "test/spec.dats"
, target = "${prelude.atsProject}/spec"
, gcBin = True
}
]
, bin =
[ prelude.bin
⫽ { src = "src/wc-demo.dats"
, target = "${prelude.atsProject}/wc-demo"
}
]
, dependencies = prelude.mapPlainDeps [ "ats-bench", "specats" ]
, compiler = [ 0, 4, 2 ]
, version = [ 0, 4, 2 ]
, atsLib = False
}
)