Newer
Older
Max Tomago
committed
{ mkDerivation
Max Tomago
committed
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
, base
, base16-bytestring
, bytestring
, cardano-binary
, cardano-data
, cardano-ledger-alonzo
, cardano-ledger-core
, cardano-ledger-pretty
, cardano-ledger-shelley
, cardano-ledger-shelley-ma
, cardano-ledger-shelley-ma-test
, cardano-ledger-shelley-test
, cardano-protocol-tpraos
, cardano-slotting
, cardano-strict-containers
, cborg
, containers
, data-default-class
, fetchgit
, hashable
, lib
, microlens
, plutus-core
, plutus-ledger-api
, plutus-tx
, small-steps
, small-steps-test
, tasty
, tasty-hunit
, tasty-quickcheck
, text
, time
, transformers
}:
mkDerivation {
pname = "cardano-ledger-alonzo-test";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/milloni/cardano-ledger";
sha256 = "08nj6hcqj5apvb17n1irc8j7rzf10bcdh5gh1mkmhwbyw6h2d4ab";
rev = "3aa1fd8469424778454644f0d371988fb4490b4a";
Max Tomago
committed
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
105
106
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/eras/alonzo/test-suite/; echo source root reset to $sourceRoot";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base
bytestring
cardano-binary
cardano-data
cardano-ledger-alonzo
cardano-ledger-core
cardano-ledger-pretty
cardano-ledger-shelley
cardano-ledger-shelley-ma
cardano-ledger-shelley-ma-test
cardano-ledger-shelley-test
cardano-protocol-tpraos
cardano-slotting
cardano-strict-containers
cborg
containers
data-default-class
hashable
microlens
plutus-core
plutus-ledger-api
plutus-tx
QuickCheck
small-steps
small-steps-test
text
transformers
];
testHaskellDepends = [
base
base16-bytestring
bytestring
cardano-binary
cardano-data
cardano-ledger-alonzo
cardano-ledger-core
cardano-ledger-shelley
cardano-ledger-shelley-ma
cardano-ledger-shelley-ma-test
cardano-ledger-shelley-test
cardano-protocol-tpraos
cardano-slotting
cardano-strict-containers
cborg
containers
data-default-class
microlens
plutus-ledger-api
QuickCheck
small-steps
small-steps-test
tasty
tasty-hunit
tasty-quickcheck
time
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
Max Tomago
committed
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Tests for Cardano ledger introducing Plutus Core";
license = lib.licenses.asl20;
broken = false;
}