This repository was archived by the owner on Aug 1, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +115
-5
lines changed Expand file tree Collapse file tree 4 files changed +115
-5
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ https://github.com/input-output-hk/haskell-hedgehog.git 2c9e51804e8217dff89f5c32
8
8
https://github.com/input-output-hk/haskell-hedgehog.git 2e741bb53afb085741807018948ae17d956c53af hedgehog 0l0d1n2b68m0628j4yi214q5fy6pz777qfj1bc1lrra8scs5gcxh hedgehog .stack.nix/hedgehog.nix
9
9
https://github.com/input-output-hk/cardano-prelude 2d6624af423d0a5c7ced6f3ae465eaaeb4ec739e . 0kimfl3k60jz7cglk24ls5lhvm8xh0hfjs8azhhymzckvyn3y0wn cardano-prelude .stack.nix/cardano-prelude.nix
10
10
https://github.com/input-output-hk/cardano-prelude 2d6624af423d0a5c7ced6f3ae465eaaeb4ec739e test 0kimfl3k60jz7cglk24ls5lhvm8xh0hfjs8azhhymzckvyn3y0wn cardano-prelude-test .stack.nix/cardano-prelude-test.nix
11
+ https://github.com/input-output-hk/iohk-monitoring-framework 4dc4d541a645b84a281faa8950a7fd4e61708963 . 1qk5zin92bfn635nyi31b8w2nrw8zdcc8p0x2s2xcq9mzc3zdybf iohk-monitoring .stack.nix/iohk-monitoring.nix
Original file line number Diff line number Diff line change 8
8
"half" = hackage . half . "0.2.2.3" . revisions . default ;
9
9
"micro-recursion-schemes" = hackage . micro-recursion-schemes . "5.0.2.2" . revisions . default ;
10
10
"streaming-binary" = hackage . streaming-binary . "0.3.0.1" . revisions . default ;
11
- "katip" = hackage . katip . "0.6.3.0" . revisions . "55de9e007352cf3fb9de8de8b9ac17c1070824e07e6f6d5b676f9f3cff44d23c" ;
11
+ "katip" = hackage . katip . "0.7.0.0" . revisions . "4b30d0643e18d01a3fd264d3d75921b49b2f464336a52fa46fa049107ebbfe04" ;
12
+ "time-units" = hackage . time-units . "1.0.0" . revisions . "27cf54091c4a0ca73d504fc11d5c31ab4041d17404fe3499945e2055697746c1" ;
12
13
} // {
13
14
cardano-shell = ./.stack.nix/cardano-shell.nix ;
14
15
cardano-prelude = ./.stack.nix/cardano-prelude.nix ;
15
16
cardano-prelude-test = ./.stack.nix/cardano-prelude-test.nix ;
17
+ iohk-monitoring = ./.stack.nix/iohk-monitoring.nix ;
16
18
cborg = ./.stack.nix/cborg.nix ;
17
19
cardano-crypto = ./.stack.nix/cardano-crypto.nix ;
18
20
plutus-prototype = ./.stack.nix/plutus-prototype.nix ;
Original file line number Diff line number Diff line change 28
28
depends = [
29
29
( hsPkgs . base )
30
30
( hsPkgs . cardano-prelude )
31
+ ( hsPkgs . directory )
32
+ ( hsPkgs . formatting )
33
+ ( hsPkgs . safe-exceptions )
34
+ ( hsPkgs . text )
35
+ ( hsPkgs . transformers )
31
36
( hsPkgs . contravariant )
32
37
( hsPkgs . dhall )
33
- ( hsPkgs . aeson )
34
- ( hsPkgs . katip )
35
- ( hsPkgs . ekg )
36
38
( hsPkgs . ekg-core )
37
39
( hsPkgs . QuickCheck )
38
- ( hsPkgs . safe-exceptions )
39
40
( hsPkgs . text )
40
41
( hsPkgs . transformers )
41
42
( hsPkgs . concurrency )
43
+ ( hsPkgs . QuickCheck )
42
44
] ;
43
45
} ;
44
46
exes = {
47
49
( hsPkgs . base )
48
50
( hsPkgs . cardano-shell )
49
51
( hsPkgs . cardano-prelude )
52
+ ( hsPkgs . safe-exceptions )
53
+ ( hsPkgs . iohk-monitoring )
50
54
] ;
51
55
} ;
52
56
} ;
Original file line number Diff line number Diff line change
1
+ { system
2
+ , compiler
3
+ , flags
4
+ , pkgs
5
+ , hsPkgs
6
+ , pkgconfPkgs
7
+ , ... } :
8
+ {
9
+ flags = { } ;
10
+ package = {
11
+ specVersion = "1.10" ;
12
+ identifier = {
13
+ name = "iohk-monitoring" ;
14
+ version = "0.1.0.0" ;
15
+ } ;
16
+ license = "MIT" ;
17
+ copyright = "2018 IOHK" ;
18
+ maintainer = "" ;
19
+ author = "Alexander Diemand, Andreas Triantafyllos" ;
20
+ homepage = "" ;
21
+ url = "" ;
22
+ synopsis = "loggin, benchmarking and monitoring framework" ;
23
+ description = "" ;
24
+ buildType = "Simple" ;
25
+ } ;
26
+ components = {
27
+ "library" = {
28
+ depends = [
29
+ ( hsPkgs . base )
30
+ ( hsPkgs . aeson )
31
+ ( hsPkgs . array )
32
+ ( hsPkgs . async )
33
+ ( hsPkgs . auto-update )
34
+ ( hsPkgs . bytestring )
35
+ ( hsPkgs . clock )
36
+ ( hsPkgs . containers )
37
+ ( hsPkgs . contravariant )
38
+ ( hsPkgs . directory )
39
+ ( hsPkgs . ekg )
40
+ ( hsPkgs . ekg-core )
41
+ ( hsPkgs . exceptions )
42
+ ( hsPkgs . filepath )
43
+ ( hsPkgs . katip )
44
+ ( hsPkgs . lens )
45
+ ( hsPkgs . mtl )
46
+ ( hsPkgs . safe-exceptions )
47
+ ( hsPkgs . stm )
48
+ ( hsPkgs . template-haskell )
49
+ ( hsPkgs . text )
50
+ ( hsPkgs . time )
51
+ ( hsPkgs . time-units )
52
+ ( hsPkgs . transformers )
53
+ ( hsPkgs . unix )
54
+ ( hsPkgs . unordered-containers )
55
+ ( hsPkgs . yaml )
56
+ ] ;
57
+ } ;
58
+ exes = {
59
+ "example-simple" = {
60
+ depends = [
61
+ ( hsPkgs . base )
62
+ ( hsPkgs . iohk-monitoring )
63
+ ( hsPkgs . async )
64
+ ( hsPkgs . bytestring )
65
+ ( hsPkgs . mtl )
66
+ ( hsPkgs . unix )
67
+ ] ;
68
+ } ;
69
+ } ;
70
+ tests = {
71
+ "tests" = {
72
+ depends = [
73
+ ( hsPkgs . base )
74
+ ( hsPkgs . iohk-monitoring )
75
+ ( hsPkgs . array )
76
+ ( hsPkgs . bytestring )
77
+ ( hsPkgs . clock )
78
+ ( hsPkgs . containers )
79
+ ( hsPkgs . mtl )
80
+ ( hsPkgs . process )
81
+ ( hsPkgs . QuickCheck )
82
+ ( hsPkgs . random )
83
+ ( hsPkgs . semigroups )
84
+ ( hsPkgs . stm )
85
+ ( hsPkgs . tasty )
86
+ ( hsPkgs . tasty-hunit )
87
+ ( hsPkgs . tasty-quickcheck )
88
+ ( hsPkgs . text )
89
+ ( hsPkgs . time )
90
+ ( hsPkgs . time-units )
91
+ ( hsPkgs . transformers )
92
+ ( hsPkgs . void )
93
+ ] ;
94
+ } ;
95
+ } ;
96
+ } ;
97
+ } // {
98
+ src = pkgs . fetchgit {
99
+ url = "https://github.com/input-output-hk/iohk-monitoring-framework" ;
100
+ rev = "4dc4d541a645b84a281faa8950a7fd4e61708963" ;
101
+ sha256 = "1qk5zin92bfn635nyi31b8w2nrw8zdcc8p0x2s2xcq9mzc3zdybf" ;
102
+ } ;
103
+ }
You can’t perform that action at this time.
0 commit comments