diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -4,5 +4,8 @@
 #### dev
 * ...
 
-#### 0.7.1
+#### 0.0.7.2
+* Fixed broken package
+
+#### 0.0.7.1
 * Initial upload to Hackage
diff --git a/config/models b/config/models
new file mode 100644
--- /dev/null
+++ b/config/models
@@ -0,0 +1,30 @@
+User json
+    ident Text
+    name Text
+    password Text Maybe
+    email Text
+    active Bool
+    token Text Maybe
+    createdAt UTCTime
+    lastLogin UTCTime Maybe
+    deletedAt UTCTime Maybe
+    UniqueUser ident
+    UniqueName name
+    UniqueEmail email
+    UniqueAuth email active
+    deriving Typeable Show
+-- Email
+--     email Text
+--     user UserId Maybe
+--     verkey Text Maybe
+--     UniqueEmail email
+
+ActionLog json
+    ident Text
+    userId UserId
+    message Text
+    lang Text
+    path Text Maybe
+    createdAt UTCTime
+    UniqueLog ident lang
+    deriving Typeable Show
diff --git a/config/routes b/config/routes
new file mode 100644
--- /dev/null
+++ b/config/routes
@@ -0,0 +1,30 @@
+/static AdminStaticR:
+    /css               CssAdminR:
+        /normalize.css NormalizeR    GET
+        /bootstrap.css BootstrapCssR GET
+
+    /js               JsAdminR:
+        /bootstrap.js BootstrapJsR GET
+        /jquery.js    JQueryR      GET
+
+    /fonts                                 FontsAdminR:
+        /glyphicons-halflings-regular.woff GlyphiconsWoffR GET
+        /glyphicons-halflings-regular.ttf  GlyphiconsTtfR  GET
+        /glyphicons-halflings-regular.eot  GlyphiconsEotR  GET
+        /glyphicons-halflings-regular.svg  GlyphiconsSvgR  GET
+
+    /img                    ImageAdminR:
+        /lambdacms-logo.png LambdaCmsLogoR GET
+
+/                       AdminHomeR         GET
+/activate/#UserId/#Text UserAdminActivateR GET POST
+
+-- User CRUD
+/users             UserAdminR:
+    /              UserAdminIndexR          GET
+    /new           UserAdminNewR            GET POST
+    !/#UserId      UserAdminEditR           GET PATCH DELETE CHPASS RQPASS DEACTIVATE ACTIVATE
+
+/activity                      ActionLogAdminR:
+    /                          ActionLogAdminIndexR     GET
+    /user/#UserId              ActionLogAdminUserR      GET
diff --git a/lambdacms-core.cabal b/lambdacms-core.cabal
--- a/lambdacms-core.cabal
+++ b/lambdacms-core.cabal
@@ -1,13 +1,13 @@
 name:               lambdacms-core
-version:            0.0.7.1
+version:            0.0.7.2
 license:            MIT
 license-file:       LICENSE
-author:             Cies Breijs, Mats RietDijk, Rutger van Aalst
+author:             Cies Breijs, Mats Rietdijk, Rutger van Aalst
 maintainer:         cies@AT-hoppinger.com
 copyright:          (c) 2014 Hoppinger
 bug-reports:        https://github.com/lambdacms/lambdacms-core
 homepage:           http://lambdacms.org
-synopsis:           Core package of a Content Management System (CMS) for Yesod.
+synopsis:           Core CMS extension for Yesod apps
 description:        LambdaCms is a Content Management System (CMS) in Haskell
                     using Yesod.
 stability:          alpha
@@ -29,6 +29,8 @@
                   , static/fonts/*.woff
                   , static/img/*.png
                   , static/js/*.min.js
+                  , config/models
+                  , config/routes
 
 source-repository head
   type:             git
