diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -6,3 +6,6 @@
 - Whatchdog (http://www.freedesktop.org/software/systemd/man/sd_notify.html)
 - Socket activation (http://0pointer.de/blog/projects/socket-activation.html)
 - journal log
+
+Available on hackage
+http://hackage.haskell.org/package/systemd-1.0.0/docs/System-Systemd-Daemon.html
diff --git a/cabal.sandbox.config b/cabal.sandbox.config
deleted file mode 100644
--- a/cabal.sandbox.config
+++ /dev/null
@@ -1,25 +0,0 @@
--- This is a Cabal package environment file.
--- THIS FILE IS AUTO-GENERATED. DO NOT EDIT DIRECTLY.
--- Please create a 'cabal.config' file in the same directory
--- if you want to change the default settings for this sandbox.
-
-
-local-repo: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/packages
-logs-dir: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/logs
-world-file: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/world
-user-install: False
-package-db: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/x86_64-linux-ghc-7.8.3-packages.conf.d
-build-summary: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/logs/build.log
-
-install-dirs
-  prefix: /home/erebe/programmation/haskell/systemd/.cabal-sandbox
-  bindir: $prefix/bin
-  libdir: $prefix/lib
-  libsubdir: $arch-$os-$compiler/$pkgid
-  libexecdir: $prefix/libexec
-  datadir: $prefix/share
-  datasubdir: $arch-$os-$compiler/$pkgid
-  docdir: $datadir/doc/$arch-$os-$compiler/$pkgid
-  htmldir: $docdir/html
-  haddockdir: $htmldir
-  sysconfdir: $prefix/etc
diff --git a/ressources/test.service b/ressources/test.service
deleted file mode 100644
--- a/ressources/test.service
+++ /dev/null
@@ -1,12 +0,0 @@
-[Unit]
-Description=MyDaemon
-
-[Service]
-Type=simple
-TimeoutStartSec=0
-ExecStart=/home/erebe/programmation/haskell/systemd/dist/build/daemon-test/daemon-test
-WatchdogSec=60
-Restart=on-failure
-
-[Install]
-WantedBy=multi-user.target
diff --git a/systemd.cabal b/systemd.cabal
--- a/systemd.cabal
+++ b/systemd.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                systemd
-version:             1.0.0
+version:             1.0.1
 synopsis:            Systemd facilities (Socket activation, Notify)
 description:         A module for Systemd facilities.
 homepage:            https://github.com/erebe/systemd
@@ -22,7 +22,7 @@
 library
   exposed-modules:  System.Systemd.Daemon
   c-sources:        System/Systemd/socket_info.c
-  build-depends:       base >=4.7 && <4.8,
+  build-depends:       base >=4.7 && <= 4.8.1.0,
                        unix >= 2.5,
                        transformers >= 0.3,
                        network >=2.3,
@@ -35,6 +35,6 @@
    type:                exitcode-stdio-1.0
    main-is:             Main.hs
    default-language:    Haskell2010
-   build-depends:       base >=4.7 && <4.8,
+   build-depends:       base >=4.7 && <= 4.8.1.0,
                         systemd
    default-language:    Haskell2010
