diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for nvvm
 
+## 0.7.5.2  -- 2017-04-10
+
+* Add support for c2hs < 0.26
+
 ## 0.7.5.1  -- 2016-11-08
 
 * Add support for Cabal-1.22
diff --git a/Foreign/NVVM/Error.chs b/Foreign/NVVM/Error.chs
--- a/Foreign/NVVM/Error.chs
+++ b/Foreign/NVVM/Error.chs
@@ -19,7 +19,9 @@
 ) where
 
 import Foreign.NVVM.Internal.C2HS
-import Foreign.C.String
+import Foreign.C
+import Foreign.Ptr
+import System.IO.Unsafe
 
 import Control.Exception
 import Data.Typeable
diff --git a/Foreign/NVVM/Info.chs b/Foreign/NVVM/Info.chs
--- a/Foreign/NVVM/Info.chs
+++ b/Foreign/NVVM/Info.chs
@@ -20,6 +20,8 @@
 import Foreign.NVVM.Error
 import Foreign.NVVM.Internal.C2HS
 import Foreign.Marshal
+import Foreign.C
+import Foreign.Ptr
 
 import Data.Version
 import System.IO.Unsafe
diff --git a/Foreign/NVVM/Internal/C2HS.hs b/Foreign/NVVM/Internal/C2HS.hs
--- a/Foreign/NVVM/Internal/C2HS.hs
+++ b/Foreign/NVVM/Internal/C2HS.hs
@@ -49,6 +49,7 @@
 
   -- * Conversion between C and Haskell types
   cIntConv, cFloatConv, cToBool, cFromBool, cToEnum, cFromEnum
+
 ) where
 
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -2,6 +2,7 @@
 ============================
 
 [![Build status](https://travis-ci.org/tmcdonell/nvvm.svg?branch=master)](https://travis-ci.org/tmcdonell/nvvm)
+[![Hackage](https://img.shields.io/hackage/v/nvvm.svg)](https://hackage.haskell.org/package/nvvm)
 
 The NVVM library compiles [NVVM IR][nvvm-ir-spec] (a subset of LLVM IR) into PTX code which can
 then be executed on NVIDIA GPUs.
diff --git a/nvvm.cabal b/nvvm.cabal
--- a/nvvm.cabal
+++ b/nvvm.cabal
@@ -1,5 +1,5 @@
 name:                   nvvm
-version:                0.7.5.1
+version:                0.7.5.2
 synopsis:               FFI bindings to NVVM
 description:
   The NVVM library compiles NVVM IR (a subset of LLVM IR) into PTX code which
@@ -73,10 +73,14 @@
       c2hs              >= 0.21
 
 
+source-repository head
+  type:                 git
+  location:             https://github.com/tmcdonell/nvvm
+
 source-repository this
   type:                 git
   location:             https://github.com/tmcdonell/nvvm
-  tag:                  0.7.5.1
+  tag:                  v0.7.5.2
 
 -- vim: nospell
 
