diff --git a/Tensor.cabal b/Tensor.cabal
--- a/Tensor.cabal
+++ b/Tensor.cabal
@@ -1,17 +1,27 @@
 name: Tensor
-version: 1.1.0.0
+version: 1.1.0.1
+synopsis: Tensor data types
+description:
+  This package contains tensor data types and their instances for some basic
+  type classes.
+homepage: https://github.com/svenpanne/Tensor
+bug-reports: https://github.com/svenpanne/Tensor/issues
 license: BSD3
 license-file: LICENSE
+author: Sven Panne
 maintainer: Sven Panne <svenpanne@gmail.com>
-bug-reports: https://github.com/haskell-opengl/Tensor/issues
-homepage: https://github.com/haskell-opengl/Tensor
 category: Data
-synopsis: Tensor data types
-description:
-   This package contains tensor data types and their instances for some basic
-   type classes.
 build-type: Simple
-exposed-modules: Data.Tensor
-hs-Source-Dirs: src
-ghc-options: -Wall
-build-depends: base >= 3 && < 5
+cabal-version: >=1.10
+
+library
+  exposed-modules: Data.Tensor
+  build-depends: base >= 3 && < 5
+  default-language: Haskell2010
+  other-extensions: DeriveDataTypeable
+  hs-Source-Dirs: src
+  ghc-options: -Wall
+
+source-repository head
+  type: git
+  location: https://github.com/svenpanne/Tensor.git
