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
{ mkDerivation
, base
, cardano-binary
, containers
, criterion
, deepseq
, fetchgit
, lib
, nothunks
, primitive
, QuickCheck
, quickcheck-classes-base
, random
, tasty
, tasty-quickcheck
, vector
, vector-algorithms
}:
mkDerivation {
pname = "vector-map";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/milloni/cardano-ledger";
sha256 = "109piw0q5nlypsywkmkwng4ixalbfmzf379b4n931ghih54xzwja";
rev = "bc859395040abf075f4ca44b4ce8c221d2c4bb66";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/libs/vector-map/; echo source root reset to $sourceRoot";
libraryHaskellDepends = [
base
cardano-binary
containers
deepseq
nothunks
primitive
vector
vector-algorithms
];
testHaskellDepends = [
base
containers
QuickCheck
quickcheck-classes-base
tasty
tasty-quickcheck
];
benchmarkHaskellDepends = [ base containers criterion random ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/input-output-hk/cardano-ledger";
description = "An efficient VMap that is backed by two vectors: one for keys and another for values";
license = lib.licenses.asl20;
}