diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+2017-08-28 Ivan Perez <ivan.perez@keera.co.uk>
+        * Yampa.cabal: Version bump (0.10.6.2), fixes issue with dependencies.
+        * stack.yaml: Includes minimal stack configuration.
+
 2017-08-17 Ivan Perez <ivan.perez@keera.co.uk>
         * Yampa.cabal: Version bump (0.10.6.1).
         * examples/: new examples, using wiimote.
diff --git a/Yampa.cabal b/Yampa.cabal
--- a/Yampa.cabal
+++ b/Yampa.cabal
@@ -1,5 +1,5 @@
 name: Yampa
-version: 0.10.6.1
+version: 0.10.6.2
 cabal-version: >= 1.8
 license: BSD3
 license-file: LICENSE
@@ -141,24 +141,30 @@
   main-is: MainBouncingBox.hs
   hs-source-dirs:  examples/yampa-game/
   ghc-options : -O3 -Wall -fno-warn-name-shadowing
-  build-Depends: base < 5, random, deepseq, SDL, Yampa
-  if !flag(examples)
+  if flag(examples)
+    buildable: True
+    build-Depends: base < 5, random, deepseq, SDL, Yampa
+  else
     buildable: False
 
 executable yampa-examples-sdl-circlingmouse
   main-is: MainCircleMouse.hs
   hs-source-dirs:  examples/yampa-game/
   ghc-options : -O3 -Wall -fno-warn-name-shadowing
-  build-Depends: base < 5, random, deepseq, SDL, Yampa
-  if !flag(examples)
+  if flag(examples)
+    buildable: True
+    build-Depends: base < 5, random, deepseq, SDL, Yampa
+  else
     buildable: False
 
 executable yampa-examples-sdl-wiimote
   main-is: MainWiimote.hs
   hs-source-dirs:  examples/yampa-game/
   ghc-options : -O3 -Wall -fno-warn-name-shadowing -rtsopts
-  build-Depends: base < 5, random, deepseq, SDL, hcwiid, Yampa
-  if !flag(examples)
+  if flag(examples)
+    buildable: True
+    build-depends: base < 5, random, deepseq, SDL, hcwiid, Yampa
+  else 
     buildable: False
 
 source-repository head
