Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions base-noprelude.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: base-noprelude
version: 4.12.0.0
version: 4.16.4.0

synopsis: "base" package sans "Prelude" module
homepage: https://github.com/hvr/base-noprelude
Expand All @@ -14,7 +14,7 @@ build-type: Simple
description:
This package simplifies defining custom "Prelude"s without having
to use @-XNoImplicitPrelude@ by re-exporting the full module-hierarchy of
the [base-4.12.0.0](https://hackage.haskell.org/package/base-4.12.0.0)
the [base-4.16.4.0](https://hackage.haskell.org/package/base-4.16.4.0)
package /except/ for the "Prelude" module.
.
An usage example for such a "Prelude"-replacement is available with
Expand All @@ -35,10 +35,10 @@ source-repository head
location: https://github.com/hvr/base-noprelude.git

library
build-depends: base ==4.12.0.0
build-depends: base ==4.16.4.0
default-language: Haskell2010

-- re-exported modules copied from base-4.12.0.0's exposed-modules
-- re-exported modules copied from base-4.16.4.0's exposed-modules
reexported-modules:
, Control.Applicative
, Control.Arrow
Expand Down Expand Up @@ -107,6 +107,7 @@ library
, Data.Type.Bool
, Data.Type.Coercion
, Data.Type.Equality
, Data.Type.Ord
, Data.Typeable
, Data.Unique
, Data.Version
Expand Down Expand Up @@ -136,6 +137,7 @@ library
, Foreign.Storable
, GHC.Arr
, GHC.Base
, GHC.Bits
, GHC.ByteOrder
, GHC.Char
, GHC.Clock
Expand All @@ -149,6 +151,7 @@ library
, GHC.Enum
, GHC.Environment
, GHC.Err
, GHC.Event.TimeOut
, GHC.Exception
, GHC.Exception.Type
, GHC.ExecutionStack
Expand All @@ -162,6 +165,7 @@ library
, GHC.Foreign
, GHC.ForeignPtr
, GHC.GHCi
, GHC.GHCi.Helpers
, GHC.Generics
, GHC.IO
, GHC.IO.Buffer
Expand All @@ -186,9 +190,14 @@ library
, GHC.IO.Handle.Types
, GHC.IO.IOMode
, GHC.IO.Unsafe
, GHC.IO.StdHandles
, GHC.IO.SubSystem
, GHC.IOArray
, GHC.IORef
, GHC.Int
, GHC.Integer
, GHC.Integer.Logarithms
, GHC.Ix
, GHC.List
, GHC.Maybe
, GHC.MVar
Expand Down Expand Up @@ -217,7 +226,9 @@ library
, GHC.Storable
, GHC.TopHandler
, GHC.TypeLits
, GHC.TypeLits.Internal
, GHC.TypeNats
, GHC.TypeNats.Internal
, GHC.Unicode
, GHC.Weak
, GHC.Word
Expand Down Expand Up @@ -249,6 +260,11 @@ library
, Type.Reflection
, Type.Reflection.Unsafe
, Unsafe.Coerce
-- TODO: remove
, GHC.IOPort
, GHC.Num.Integer
, GHC.Num.Natural
, GHC.Num.BigNat

-- OS Specific
if os(windows)
Expand Down