diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,27 @@
+Copyright (c) Marc Fontaine 2015-2017
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+3. Neither the name of the author nor the names of his contributors
+   may be used to endorse or promote products derived from this software
+   without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGE.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 # STLinkUSB
 
+![ST-Link USB dongle](https://i.imgur.com/Y4iEvVt.jpg)
+
 This package contains a Haskell driver for ST-Link USB dongles.
 My use case for this driver is the STM32-Zombie library.
 The STM32-Zombie library turns a STM32 micro-controller
diff --git a/STLinkUSB.cabal b/STLinkUSB.cabal
--- a/STLinkUSB.cabal
+++ b/STLinkUSB.cabal
@@ -1,6 +1,7 @@
 Name:          STLinkUSB
-Version:       0.1.0
+Version:       0.1.1
 Category:      Hardware, STM32, Microcontroller
+License-File:  LICENSE
 Synopsis:      STLink USB interface in Haskell
 Description:   This package contains a Haskell driver for ST-Link USB dongles.
                My use case for this driver is the STM32-Zombie library.
@@ -10,6 +11,7 @@
 
 License:       BSD3
 Author:        2015-2017 Marc Fontaine <Marc.Fontaine@gmx.de>
+Maintainer:    2015-2017 Marc Fontaine <Marc.Fontaine@gmx.de>               
 Stability:     Experimental
 Tested-With:   GHC == 8.2.1
 Build-Type:    Simple
@@ -18,12 +20,12 @@
                     
 Source-Repository head
   type:     git
-  location: git://github.com/MarcFontaine/STLinkUSB
+  location: git://github.com/MarcFontaine/stm32hs
 
 library
   default-language  : Haskell2010
   ghc-options       : -Wall
-  Build-depends     : base  >= 4.10 && < 5
+  Build-depends     : base  >= 4.9 && < 5
                     , bytestring >= 0.10 && < 0.11
                     , usb >= 1.3 && < 1.4
                     , vector >= 0.12 && < 0.13
diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -1,2 +1,3 @@
+#!/usr/bin/env runhaskell
 import Distribution.Simple
 main = defaultMain
