diff --git a/lucid-hyperscript.cabal b/lucid-hyperscript.cabal
--- a/lucid-hyperscript.cabal
+++ b/lucid-hyperscript.cabal
@@ -1,72 +1,64 @@
-cabal-version: 1.12
-
--- This file has been generated from package.yaml by hpack version 0.34.4.
---
--- see: https://github.com/sol/hpack
+cabal-version:      1.12
+name:               lucid-hyperscript
+version:            0.1.0.2
+license:            BSD3
+license-file:       LICENSE
+copyright:          2022 Monadic Systems LLC
+maintainer:         tech@monadic.systems
+author:             Monadic Systems LLC
+homepage:           https://github.com/MonadicSystems/lucid-hyperscript#readme
+bug-reports:        https://github.com/MonadicSystems/lucid-hyperscript/issues
+synopsis:           Use _hyperscript with lucid
+description:
+    Please see the README on GitHub at <https://github.com/MonadicSystems/lucid-hyperscript#readme>
 
-name:           lucid-hyperscript
-version:        0.1.0.1
-synopsis:       Use _hyperscript with lucid
-description:    Please see the README on GitHub at <https://github.com/MonadicSystems/lucid-hyperscript#readme>
-category:       Web
-homepage:       https://github.com/MonadicSystems/lucid-hyperscript#readme
-bug-reports:    https://github.com/MonadicSystems/lucid-hyperscript/issues
-author:         Monadic Systems LLC
-maintainer:     tech@monadic.systems
-copyright:      2022 Monadic Systems LLC
-license:        BSD3
-license-file:   LICENSE
-build-type:     Simple
+category:           Web
+build-type:         Simple
 extra-source-files:
     README.md
     ChangeLog.md
 
 source-repository head
-  type: git
-  location: https://github.com/MonadicSystems/lucid-hyperscript
+    type:     git
+    location: https://github.com/MonadicSystems/lucid-hyperscript
 
 library
-  exposed-modules:
-      Lucid.Hyperscript
-      Lucid.Hyperscript.QuasiQuoter
-  other-modules:
-      Paths_lucid_hyperscript
-  hs-source-dirs:
-      src
-  build-depends:
-      base >=4.7 && <5
-    , lucid
-    , template-haskell
-    , text
-  default-language: Haskell2010
+    exposed-modules:
+        Lucid.Hyperscript
+        Lucid.Hyperscript.QuasiQuoter
 
+    hs-source-dirs:   src
+    other-modules:    Paths_lucid_hyperscript
+    default-language: Haskell2010
+    build-depends:
+        base >=4.7 && <5,
+        lucid >=2.9.12.1 && <2.10,
+        template-haskell >=2.16.0.0 && <2.17,
+        text >=1.2.4.1 && <1.3
+
 executable lucid-hyperscript-exe
-  main-is: Main.hs
-  other-modules:
-      Paths_lucid_hyperscript
-  hs-source-dirs:
-      app
-  ghc-options: -threaded -rtsopts -with-rtsopts=-N
-  build-depends:
-      base >=4.7 && <5
-    , lucid
-    , lucid-hyperscript
-    , template-haskell
-    , text
-  default-language: Haskell2010
+    main-is:          Main.hs
+    hs-source-dirs:   app
+    other-modules:    Paths_lucid_hyperscript
+    default-language: Haskell2010
+    ghc-options:      -threaded -rtsopts -with-rtsopts=-N
+    build-depends:
+        base >=4.7 && <5,
+        lucid >=2.9.12.1 && <2.10,
+        lucid-hyperscript -any,
+        template-haskell >=2.16.0.0 && <2.17,
+        text >=1.2.4.1 && <1.3
 
 test-suite lucid-hyperscript-test
-  type: exitcode-stdio-1.0
-  main-is: Spec.hs
-  other-modules:
-      Paths_lucid_hyperscript
-  hs-source-dirs:
-      test
-  ghc-options: -threaded -rtsopts -with-rtsopts=-N
-  build-depends:
-      base >=4.7 && <5
-    , lucid
-    , lucid-hyperscript
-    , template-haskell
-    , text
-  default-language: Haskell2010
+    type:             exitcode-stdio-1.0
+    main-is:          Spec.hs
+    hs-source-dirs:   test
+    other-modules:    Paths_lucid_hyperscript
+    default-language: Haskell2010
+    ghc-options:      -threaded -rtsopts -with-rtsopts=-N
+    build-depends:
+        base >=4.7 && <5,
+        lucid >=2.9.12.1 && <2.10,
+        lucid-hyperscript -any,
+        template-haskell >=2.16.0.0 && <2.17,
+        text >=1.2.4.1 && <1.3
diff --git a/src/Lucid/Hyperscript/QuasiQuoter.hs b/src/Lucid/Hyperscript/QuasiQuoter.hs
--- a/src/Lucid/Hyperscript/QuasiQuoter.hs
+++ b/src/Lucid/Hyperscript/QuasiQuoter.hs
@@ -4,11 +4,11 @@
 
 module Lucid.Hyperscript.QuasiQuoter (_hs, __) where
 
-import Data.Text (Text)
+import Data.Text (Text(..))
 import qualified Data.Text as Text
 import GHC.Exts (IsString (..))
 import qualified Language.Haskell.TH as TH
-import Language.Haskell.TH.Quote (QuasiQuoter (QuasiQuoter))
+import Language.Haskell.TH.Quote ( QuasiQuoter(QuasiQuoter) )
 import Lucid (script_, toHtml, type_)
 import Lucid.Base (makeAttribute)
 
