diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,10 @@
 # Revision history for generic-storable-plugin
 
+## 0.1.0.3  -- 2016-09-19
+
+* Fixed cabal file (no dependencies on generic-storable, just on derive-storable)
+* Changed the link in README to hackage repository.
+
 ## 0.1.0.2  -- 2016-09-11
 
 * Changed generic-storable to derive-storable in README.md
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
 * all fields of the constructor need to be GStorable.
 * implement a Generic instance (`derive (Generic)`)
 
-In order to achieve the same performance as for hand-written instances, take a look at [derive-storable-plugin](https://www.github.com/mkloczko/derive-storable-plugin).
+In order to achieve the same performance as for hand-written instances, take a look at [derive-storable-plugin](https://hackage.haskell.org/package/derive-storable-plugin).
 
 # Usage
 
diff --git a/derive-storable.cabal b/derive-storable.cabal
--- a/derive-storable.cabal
+++ b/derive-storable.cabal
@@ -1,6 +1,6 @@
 name:                derive-storable
 
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis: Derive Storable instances with help of GHC.Generics.           
 
 description:         The package allows for automatic derivation of Storable instances 
@@ -14,7 +14,7 @@
 author:              Mateusz Kloczko
 
 maintainer:          mateusz.p.kloczko@gmail.com
-category:            FFI
+category:            Foreign
 
 build-type:          Simple
 
@@ -37,7 +37,7 @@
   hs-source-dirs:      src, test/Basic, test/Basic/cbits
   c-sources:           test/Basic/cbits/TestCases.c 
   main-is:             MemoryCSpec.hs
-  build-depends:       base >= 4.8 && <4.10, hspec == 2.2.* ,QuickCheck == 2.8.*, generic-storable
+  build-depends:       base >= 4.8 && <4.10, hspec == 2.2.* ,QuickCheck == 2.8.*, derive-storable
   
   default-language:    Haskell2010
 
@@ -45,6 +45,6 @@
   type:                exitcode-stdio-1.0
   hs-source-dirs:      src/ test/Spec test/Basic test/GenericRep/
   Main-is:             Spec.hs
-  build-depends:       base >= 4.8 && < 4.10, generic-storable, hspec == 2.2.*, QuickCheck == 2.8.*
+  build-depends:       base >= 4.8 && < 4.10, derive-storable, hspec == 2.2.*, QuickCheck == 2.8.*
 
   default-language:    Haskell2010
