Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 83e2183

Browse files
committed
squash! [DEVOPS-1120] nix-tools autogenerated code + tweaks
1 parent 00c0977 commit 83e2183

File tree

4 files changed

+115
-5
lines changed

4 files changed

+115
-5
lines changed

.stack-to-nix.cache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ https://github.com/input-output-hk/haskell-hedgehog.git 2c9e51804e8217dff89f5c32
88
https://github.com/input-output-hk/haskell-hedgehog.git 2e741bb53afb085741807018948ae17d956c53af hedgehog 0l0d1n2b68m0628j4yi214q5fy6pz777qfj1bc1lrra8scs5gcxh hedgehog .stack.nix/hedgehog.nix
99
https://github.com/input-output-hk/cardano-prelude 2d6624af423d0a5c7ced6f3ae465eaaeb4ec739e . 0kimfl3k60jz7cglk24ls5lhvm8xh0hfjs8azhhymzckvyn3y0wn cardano-prelude .stack.nix/cardano-prelude.nix
1010
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

nix/.stack-pkgs.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88
"half" = hackage.half."0.2.2.3".revisions.default;
99
"micro-recursion-schemes" = hackage.micro-recursion-schemes."5.0.2.2".revisions.default;
1010
"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";
1213
} // {
1314
cardano-shell = ./.stack.nix/cardano-shell.nix;
1415
cardano-prelude = ./.stack.nix/cardano-prelude.nix;
1516
cardano-prelude-test = ./.stack.nix/cardano-prelude-test.nix;
17+
iohk-monitoring = ./.stack.nix/iohk-monitoring.nix;
1618
cborg = ./.stack.nix/cborg.nix;
1719
cardano-crypto = ./.stack.nix/cardano-crypto.nix;
1820
plutus-prototype = ./.stack.nix/plutus-prototype.nix;

nix/.stack.nix/cardano-shell.nix

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,19 @@
2828
depends = [
2929
(hsPkgs.base)
3030
(hsPkgs.cardano-prelude)
31+
(hsPkgs.directory)
32+
(hsPkgs.formatting)
33+
(hsPkgs.safe-exceptions)
34+
(hsPkgs.text)
35+
(hsPkgs.transformers)
3136
(hsPkgs.contravariant)
3237
(hsPkgs.dhall)
33-
(hsPkgs.aeson)
34-
(hsPkgs.katip)
35-
(hsPkgs.ekg)
3638
(hsPkgs.ekg-core)
3739
(hsPkgs.QuickCheck)
38-
(hsPkgs.safe-exceptions)
3940
(hsPkgs.text)
4041
(hsPkgs.transformers)
4142
(hsPkgs.concurrency)
43+
(hsPkgs.QuickCheck)
4244
];
4345
};
4446
exes = {
@@ -47,6 +49,8 @@
4749
(hsPkgs.base)
4850
(hsPkgs.cardano-shell)
4951
(hsPkgs.cardano-prelude)
52+
(hsPkgs.safe-exceptions)
53+
(hsPkgs.iohk-monitoring)
5054
];
5155
};
5256
};

nix/.stack.nix/iohk-monitoring.nix

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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+
}

0 commit comments

Comments
 (0)