diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@
 Policy (PVP)](https://pvp.haskell.org)
 
 
+## [0.9.0.1] - 2018-10-02
+### Fixed
+  * Build fix for ghc-8.6
+
 ## [0.9.0.0] - 2018-03-12
 ### Changed
   * Updated API
@@ -18,5 +22,6 @@
   * _No change log recorded at this point_
 
 
+[0.9.0.1]:          https://github.com/tmcdonell/cufft/compare/release/0.9.0.0...v0.9.0.1
 [0.9.0.0]:          https://github.com/tmcdonell/cufft/compare/release/0.8.0.0...0.9.0.0
 
diff --git a/Foreign/CUDA/FFT/Stream.chs b/Foreign/CUDA/FFT/Stream.chs
--- a/Foreign/CUDA/FFT/Stream.chs
+++ b/Foreign/CUDA/FFT/Stream.chs
@@ -18,7 +18,7 @@
 ) where
 
 -- friends
-import Foreign.CUDA.Types
+import Foreign.CUDA.Driver.Stream                         ( Stream(..) )
 import Foreign.CUDA.FFT.Plan
 import Foreign.CUDA.FFT.Error
 import Foreign.CUDA.FFT.Internal.C2HS
diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -150,7 +150,11 @@
                  -- False -> [| head (componentLibraries (getComponentLocalBuildInfo lbi CLibName)) |]
              )
 #endif
-          sharedLib           = buildDir lbi </> mkSharedLibName cid uid
+#if MIN_VERSION_Cabal(2,3,0)
+          sharedLib           = buildDir lbi </> mkSharedLibName platform cid uid
+#else
+          sharedLib           = buildDir lbi </> mkSharedLibName          cid uid
+#endif
           Just extraLibDirs'  = extraLibDirs . libBuildInfo <$> library pkg_descr
       --
       updateLibraryRPATHs verbosity platform sharedLib extraLibDirs'
diff --git a/cufft.cabal b/cufft.cabal
--- a/cufft.cabal
+++ b/cufft.cabal
@@ -1,5 +1,5 @@
 name:                   cufft
-version:                0.9.0.0
+version:                0.9.0.1
 synopsis:               Haskell bindings for the CUFFT library
 description:
     This library contains FFI bindings to the CUFFT library, which provides
@@ -15,7 +15,7 @@
 license:                BSD3
 license-file:           LICENSE
 author:                 Robert Clifton-Everest, Trevor L. McDonell
-maintainer:             Robert Clifton-Everest <robertce@cse.unsw.edu.au>
+maintainer:             Trevor L. McDonell <trevor.mcdonell@gmail.com>
 homepage:               https://github.com/robeverest/cufft
 bug-reports:            https://github.com/robeverest/cufft/issues
 category:               Foreign
@@ -75,6 +75,6 @@
 source-repository this
     type:               git
     location:           https://github.com/robeverest/cufft
-    tag:                0.9.0.0
+    tag:                v0.9.0.1
 
 -- vim: nospell
