diff --git a/Development/NSIS/Show.hs b/Development/NSIS/Show.hs
--- a/Development/NSIS/Show.hs
+++ b/Development/NSIS/Show.hs
@@ -81,8 +81,8 @@
 out (InstallIcon x) = ["!define MUI_ICON " ++ show x]
 out (UninstallIcon x) = ["!define MUI_UNICON " ++ show x]
 out (HeaderImage x) = "!define MUI_HEADERIMAGE" : ["!define MUI_HEADERIMAGE_BITMAP " ++ show x | Just x <- [x]]
-out (Page x) = ["!insertmacro MUI_PAGE_" ++ map toUpper (show x)]
-out (Unpage x) = ["!insertmacro MUI_UNPAGE_" ++ map toUpper (show x)]
+out (Page x) = ["!insertmacro MUI_PAGE_" ++ showPage x]
+out (Unpage x) = ["!insertmacro MUI_UNPAGE_" ++ showPage x]
 out Function{} = []
 out (Delete ADelete{..}) = [unwords $ "Delete" : ["/rebootok"|delRebootOK] ++ [show delFile]]
 out (RMDir ARMDir{..}) = [unwords $ "RMDir" : ["/r"|rmRecursive] ++ ["/rebootok"|rmRebootOK] ++ [show rmDir]]
@@ -91,6 +91,11 @@
 out (Goto x) = ["Goto " ++ show x | x /= Label 0]
 
 out x = [show x]
+
+
+showPage :: Page -> String
+showPage (License x) = "LICENSE \"" ++ x ++ "\""
+showPage x = map toUpper $ show x
 
 
 indent x = "  " ++ x
diff --git a/Development/NSIS/Type.hs b/Development/NSIS/Type.hs
--- a/Development/NSIS/Type.hs
+++ b/Development/NSIS/Type.hs
@@ -228,12 +228,12 @@
 
 
 data Page
-    = License
+    = License FilePath
     | Components
     | Directory
     | InstFiles
     | Confirm
-     deriving (Show,Data,Typeable,Read,Bounded,Enum,Eq,Ord)
+     deriving (Show,Data,Typeable,Read,Eq,Ord)
 
 data Level = None | User | Highest | Admin
      deriving (Show,Data,Typeable,Read,Bounded,Enum,Eq,Ord)
diff --git a/Examples/Example1.hs b/Examples/Example1.hs
--- a/Examples/Example1.hs
+++ b/Examples/Example1.hs
@@ -30,6 +30,7 @@
     -- Pages
     
     page Directory
+    page $ License "../neil/todo.txt"
     page InstFiles
 
     ---------------------------------
diff --git a/nsis.cabal b/nsis.cabal
--- a/nsis.cabal
+++ b/nsis.cabal
@@ -1,7 +1,7 @@
 cabal-version:      >= 1.6
 build-type:         Simple
 name:               nsis
-version:            0.2
+version:            0.2.1
 -- license is GPL v2 only
 license:            GPL
 license-file:       LICENSE
