forked from Vortecsmaster/EA_PlutusExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNixPlutusExample.cabal
44 lines (41 loc) · 1.62 KB
/
NixPlutusExample.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
cabal-version: 2.4
name: NixPlutusExample
version: 0.1.0.0
synopsis: MathBounty bootsrap cabal project
homepage: https://www.vortecsla.com/plutus
license: MIT
license-file: LICENSE
author: Roberto J. Cerrud
maintainer: [email protected]
category: Education
extra-source-files: CHANGELOG.md
flag defer-plugin-errors
description:
Defer errors from the plugin, useful for things like Haddock that can't handle it.
default: False
manual: True
library
exposed-modules: MathBountyV2
build-depends: base ^>=4.14.1.0
, aeson -any
, bytestring -any
, cardano-api -any
, containers -any
, data-default
, freer-extras -any
, playground-common -any
, plutus-contract -any
, plutus-ledger -any
, plutus-ledger-api -any
, plutus-ledger-constraints -any
, plutus-script-utils
, plutus-tx -any
, plutus-tx-plugin -any
, text -any
, lens -any
, serialise
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas -fno-strictness -fno-spec-constr -fno-specialise
if flag(defer-plugin-errors)
ghc-options: -fplugin-opt PlutusTx.Plugin:defer-errors