From 72c8ff19d5c8c5cb72325e4f500ae7b60ee75058 Mon Sep 17 00:00:00 2001 From: Ben Davis Date: Wed, 18 Jan 2017 11:02:16 -0500 Subject: [PATCH] Update stack.yaml to match cabal requirement on containers version macaw.cabal requires 'containers >= 0.5.8.1', but this is newer than the version available via the stack lts-6.23 resolver. Specifying acceptable versions of containers (and lens and kan-extensions) in stack.yaml lets us 'stack build'. --- stack.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stack.yaml b/stack.yaml index 29a94f68..7c68f797 100644 --- a/stack.yaml +++ b/stack.yaml @@ -6,4 +6,7 @@ packages: - 'deps/galois-dwarf' - 'deps/parameterized-utils' extra-deps: -resolver: lts-6.23 \ No newline at end of file +- containers-0.5.8.1 +- kan-extensions-5.0.1 +- lens-4.15.1 +resolver: lts-6.23