diff --git a/src/UnliftIO/Streams.hs b/src/UnliftIO/Streams.hs
--- a/src/UnliftIO/Streams.hs
+++ b/src/UnliftIO/Streams.hs
@@ -15,6 +15,11 @@
   , writeTo
   , atEOF
 
+    -- * Utility streams
+
+  , nullInput
+  , nullOutput
+
     -- * Batteries included
   , module UnliftIO.Streams.ByteString
   , module UnliftIO.Streams.Combinators
@@ -64,3 +69,11 @@
 {-# INLINE atEOF #-}
 atEOF :: MonadUnliftIO m => InputStream a -> m Bool
 atEOF as = liftIO $ S.atEOF as
+
+{-# INLINE nullInput #-}
+nullInput :: MonadUnliftIO m => m (InputStream a)
+nullInput = liftIO $ S.nullInput
+
+{-# INLINE nullOutput #-}
+nullOutput :: MonadUnliftIO m => m (OutputStream a)
+nullOutput = liftIO $ S.nullOutput
diff --git a/unliftio-streams.cabal b/unliftio-streams.cabal
--- a/unliftio-streams.cabal
+++ b/unliftio-streams.cabal
@@ -1,5 +1,5 @@
 Name:                unliftio-streams
-Version:             0.1.0.0
+Version:             0.1.1.0
 Synopsis:            Generalization of io-streams to MonadUnliftIO
 Description:         Generalization of io-streams to MonadUnliftIO.
 License:             Apache-2.0
