Skip to content

Commit eb7d592

Browse files
committed
Update to LTS-18.28
Remove the Stripe "extra-deps" because they're satisfied from the LTS package set now (I think).
1 parent d81bde0 commit eb7d592

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

nix/materialized.paymentserver/PaymentServer.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,4 @@
142142
};
143143
};
144144
};
145-
} // rec {
146-
src = (pkgs.lib).mkDefault ./.;
147-
}
145+
} // rec { src = (pkgs.lib).mkDefault ./.; }

nix/materialized.paymentserver/default.nix

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22
extras = hackage:
33
{
44
packages = {
5-
"stripe-core" = (((hackage.stripe-core)."2.5.0").revisions).default;
6-
"stripe-haskell" = (((hackage.stripe-haskell)."2.5.0").revisions).default;
7-
"stripe-http-client" = (((hackage.stripe-http-client)."2.5.0").revisions).default;
85
PaymentServer = ./PaymentServer.nix;
96
servant-prometheus = ./.stack-to-nix.cache.0;
107
};
118
};
12-
resolver = "lts-14.2";
9+
resolver = "lts-18.28";
1310
modules = [
1411
({ lib, ... }:
1512
{ packages = {}; })

stack.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#
1818
# resolver: ./custom-snapshot.yaml
1919
# resolver: https://example.com/snapshots/2018-01-01.yaml
20-
resolver: lts-14.2
20+
resolver: lts-18.28
2121

2222
# User packages to be built.
2323
# Various formats can be used as shown in the example below.
@@ -38,9 +38,6 @@ packages:
3838
# using the same syntax as the packages field.
3939
# (e.g., acme-missiles-0.3)
4040
extra-deps:
41-
- "stripe-core-2.5.0"
42-
- "stripe-haskell-2.5.0"
43-
- "stripe-http-client-2.5.0"
4441
- github: "PrivateStorageio/servant-prometheus"
4542
commit: "b9461cbf689b47506b2eee973136706092b74968"
4643
# https://input-output-hk.github.io/haskell.nix/tutorials/source-repository-hashes/#stack

0 commit comments

Comments
 (0)