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

Commit 4255beb

Browse files
committed
[DEVOPS-1120] Autogenerated code + tweaks
1 parent f608ffb commit 4255beb

File tree

2 files changed

+21
-16
lines changed

2 files changed

+21
-16
lines changed

nix/.stack-pkgs.nix

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
{
2-
module = { config, lib, ... }:
3-
let
4-
hackage = config.hackage.configs;
5-
in with lib;
2+
overlay = hackage:
63
{
7-
packages = mapAttrs (_:
8-
f:
9-
mkForce (if isFunction f
10-
then f
11-
else import f)) ({
4+
packages = {
125
"aeson-options" = hackage.aeson-options."0.0.0".revisions.default;
136
"base58-bytestring" = hackage.base58-bytestring."0.1.0".revisions.default;
147
"canonical-json" = hackage.canonical-json."0.5.0.1".revisions.default;
158
"half" = hackage.half."0.2.2.3".revisions.default;
169
"micro-recursion-schemes" = hackage.micro-recursion-schemes."5.0.2.2".revisions.default;
1710
"streaming-binary" = hackage.streaming-binary."0.3.0.1".revisions.default;
11+
"katip" = hackage.katip."0.6.3.0".revision."55de9e007352cf3fb9de8de8b9ac17c1070824e07e6f6d5b676f9f3cff44d23c";
1812
} // {
1913
cardano-shell = ./.stack.nix/cardano-shell.nix;
2014
cardano-prelude = ./.stack.nix/cardano-prelude.nix;
@@ -23,9 +17,9 @@
2317
cardano-crypto = ./.stack.nix/cardano-crypto.nix;
2418
plutus-prototype = ./.stack.nix/plutus-prototype.nix;
2519
hedgehog = ./.stack.nix/hedgehog.nix;
26-
});
27-
compiler.version = mkForce "8.4.4";
28-
compiler.nix-name = mkForce "ghc844";
20+
};
21+
compiler.version = "8.4.4";
22+
compiler.nix-name = "ghc844";
2923
};
3024
resolver = "lts-12.10";
3125
compiler = "ghc-8.4.4";

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

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,20 @@
2525
};
2626
components = {
2727
"library" = {
28-
depends = [
28+
depends = [
2929
(hsPkgs.base)
3030
(hsPkgs.cardano-prelude)
31-
(hsPkgs.async)
31+
(hsPkgs.aeson)
32+
(hsPkgs.katip)
33+
(hsPkgs.ekg)
34+
(hsPkgs.ekg-core)
35+
(hsPkgs.concurrency)
36+
(hsPkgs.safe-exceptions)
3237
];
3338
};
3439
exes = {
3540
"cardano-shell-exe" = {
36-
depends = [
41+
depends = [
3742
(hsPkgs.base)
3843
(hsPkgs.cardano-shell)
3944
(hsPkgs.cardano-prelude)
@@ -42,10 +47,16 @@
4247
};
4348
tests = {
4449
"cardano-shell-test" = {
45-
depends = [
50+
depends = [
4651
(hsPkgs.base)
4752
(hsPkgs.cardano-shell)
4853
(hsPkgs.cardano-prelude)
54+
(hsPkgs.QuickCheck)
55+
(hsPkgs.hspec)
56+
(hsPkgs.hspec-contrib)
57+
(hsPkgs.concurrency)
58+
(hsPkgs.dejafu)
59+
(hsPkgs.hunit-dejafu)
4960
];
5061
};
5162
};

0 commit comments

Comments
 (0)