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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{ mkDerivation
, base
, base16-bytestring
, bytestring
, cardano-binary
, cardano-crypto-class
, cardano-data
, cardano-ledger-core
, cardano-ledger-shelley
, cardano-slotting
, cardano-strict-containers
, cborg
, containers
, deepseq
, fetchgit
, groups
, lib
, microlens
, mtl
, nothunks
, primitive
, small-steps
, text
, transformers
, validation-selective
}:
mkDerivation {
pname = "cardano-ledger-shelley-ma";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/milloni/cardano-ledger";
sha256 = "0qwq9ddsdq2kps5j1mpznxbh8lvq3qf54587kch1m0bya086bmxx";
rev = "e95d4aa2d7e39c856e8b0aaae3610ffb2391ac19";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/eras/shelley-ma/impl/; echo source root reset to $sourceRoot";
libraryHaskellDepends = [
base
base16-bytestring
bytestring
cardano-binary
cardano-crypto-class
cardano-data
cardano-ledger-core
cardano-ledger-shelley
cardano-slotting
cardano-strict-containers
cborg
containers
deepseq
groups
microlens
mtl
nothunks
primitive
small-steps
text
transformers
validation-selective
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
description = "Shelley ledger with multiasset and time lock support";
license = lib.licenses.asl20;
}