Newer
Older
Max Tomago
committed
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
{ mkDerivation
, aeson
, base
, base16-bytestring
, binary
, bytestring
, cardano-binary
, cardano-crypto
, cardano-crypto-class
, cardano-crypto-praos
, cardano-crypto-wrapper
, cardano-data
, cardano-ledger-byron
, cardano-prelude
, cardano-slotting
, cardano-strict-containers
, cborg
, containers
, data-default-class
, deepseq
, fetchgit
, groups
, heapwords
, iproute
, lib
, microlens
, mtl
, network
, non-integral
, nothunks
, partial-order
, primitive
, quiet
, scientific
, set-algebra
, small-steps
, text
, time
, transformers
, validation-selective
}:
mkDerivation {
pname = "cardano-ledger-core";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/milloni/cardano-ledger";
sha256 = "08nj6hcqj5apvb17n1irc8j7rzf10bcdh5gh1mkmhwbyw6h2d4ab";
rev = "3aa1fd8469424778454644f0d371988fb4490b4a";
Max Tomago
committed
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/libs/cardano-ledger-core/; echo source root reset to $sourceRoot";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
Max Tomago
committed
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
libraryHaskellDepends = [
aeson
base
base16-bytestring
binary
bytestring
cardano-binary
cardano-crypto
cardano-crypto-class
cardano-crypto-praos
cardano-crypto-wrapper
cardano-data
cardano-ledger-byron
cardano-prelude
cardano-slotting
cardano-strict-containers
cborg
containers
data-default-class
deepseq
groups
heapwords
iproute
microlens
mtl
network
non-integral
nothunks
partial-order
primitive
quiet
scientific
set-algebra
small-steps
text
time
transformers
validation-selective
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
Max Tomago
committed
doHaddock = false;
jailbreak = true;
doCheck = false;
Max Tomago
committed
hyperlinkSource = false;
description = "Core components of Cardano ledgers from the Shelley release on";
license = lib.licenses.asl20;