packages feed

terminfo 0.3.2 → 0.3.2.1

raw patch · 8 files changed

+24/−3 lines, 8 files

Files

System/Console/Terminfo.hs view
@@ -1,3 +1,6 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif {- | Maintainer  : judah.jacobson@gmail.com Stability   : experimental
System/Console/Terminfo/Base.hs view
@@ -1,3 +1,6 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Trustworthy #-}+#endif -- | -- Maintainer  : judah.jacobson@gmail.com -- Stability   : experimental
System/Console/Terminfo/Color.hs view
@@ -1,3 +1,6 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif -- | -- Maintainer  : judah.jacobson@gmail.com -- Stability   : experimental
System/Console/Terminfo/Cursor.hs view
@@ -1,3 +1,6 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif -- | -- Maintainer  : judah.jacobson@gmail.com -- Stability   : experimental
System/Console/Terminfo/Edit.hs view
@@ -1,3 +1,6 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif -- | -- Maintainer  : judah.jacobson@gmail.com -- Stability   : experimental
System/Console/Terminfo/Effects.hs view
@@ -1,3 +1,6 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif -- | -- Maintainer  : judah.jacobson@gmail.com -- Stability   : experimental
System/Console/Terminfo/Keys.hs view
@@ -1,3 +1,6 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif -- | -- Maintainer  : judah.jacobson@gmail.com -- Stability   : experimental
terminfo.cabal view
@@ -1,6 +1,6 @@ Name:           terminfo Cabal-Version:  >=1.4-Version:        0.3.2+Version:        0.3.2.1 Category:       User Interfaces License:        BSD3 License-File:   LICENSE@@ -22,8 +22,8 @@ Library     Build-depends:  base >= 1.0 && < 5,                     extensible-exceptions >= 0.1.1.0 && < 0.2-    Extensions:     ForeignFunctionInterface, DeriveDataTypeable, EmptyDataDecls,-                    ScopedTypeVariables, FlexibleInstances+    Extensions:     CPP, ForeignFunctionInterface, DeriveDataTypeable,+                    EmptyDataDecls, ScopedTypeVariables, FlexibleInstances     ghc-options:    -Wall     Exposed-Modules:                     System.Console.Terminfo