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
{ mkDerivation
, ansi-wl-pprint
, base
, cardano-data
, containers
, fetchgit
, lib
, tasty
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "set-algebra";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/milloni/cardano-ledger";
sha256 = "109piw0q5nlypsywkmkwng4ixalbfmzf379b4n931ghih54xzwja";
rev = "bc859395040abf075f4ca44b4ce8c221d2c4bb66";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/libs/set-algebra/; echo source root reset to $sourceRoot";
libraryHaskellDepends = [
ansi-wl-pprint
base
cardano-data
containers
];
testHaskellDepends = [
base
cardano-data
containers
tasty
tasty-hunit
tasty-quickcheck
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/input-output-hk/cardano-ledger";
description = "Set Algebra";
license = lib.licenses.asl20;
}