Newer
Older
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{ mkDerivation
, async
, barbies
, base
, base16-bytestring
, base64-bytestring
, bytestring
, cborg
, containers
, deepseq
, extra
, fetchgit
, filepath
, flat
, hedgehog
, lens
, lib
, mtl
, nothunks
, plutus-core
, plutus-tx
, prettyprinter
, PyF
, serialise
, tagged
, tasty
, tasty-hedgehog
, tasty-hunit
, tasty-quickcheck
, template-haskell
, text
, transformers
}:
mkDerivation {
pname = "plutus-ledger-api";
version = "1.0.0.0";
src = fetchgit {
url = "https://github.com/milloni/plutus";
sha256 = "0pzzqqbp6jvrzxp7gyi4dnnc5pg0jnr76dsaq6pzn3zgr46pgbd3";
rev = "81cd1ada745c12af2c2c28afce1f6b6b28b38fdd";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/plutus-ledger-api/; echo source root reset to $sourceRoot";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base
base16-bytestring
base64-bytestring
bytestring
cborg
containers
deepseq
extra
flat
lens
mtl
nothunks
plutus-core
plutus-tx
prettyprinter
PyF
serialise
tagged
template-haskell
text
transformers
];
executableHaskellDepends = [
async
base
extra
filepath
mtl
plutus-core
serialise
tasty
tasty-hunit
];
testHaskellDepends = [
barbies
base
bytestring
containers
extra
hedgehog
lens
mtl
nothunks
plutus-core
tasty
tasty-hedgehog
tasty-hunit
tasty-quickcheck
text
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
description = "Interface to the Plutus ledger for the Cardano ledger";
license = lib.licenses.asl20;
mainProgram = "evaluation-test";
}