Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace uses of unix-compat with unix to fix builds on GHC 9.4+ #216

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docker-client/docker-client.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ library
, string-conversions
, tar-conduit
, text >=2.0.1 && <2.1
, unix-compat
, unix
default-language: Haskell2010

test-suite primary
Expand Down Expand Up @@ -87,5 +87,5 @@ test-suite primary
, tasty-hunit
, temporary
, text
, unix-compat
, unix
default-language: Haskell2010
4 changes: 2 additions & 2 deletions docker-client/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies:
- string-conversions
- tar-conduit
- text >= 2.0.1 && < 2.1
- unix-compat
- unix


library:
Expand All @@ -50,4 +50,4 @@ tests:
- tasty-hunit
- temporary
- text
- unix-compat
- unix
2 changes: 1 addition & 1 deletion docker-client/test/Test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Network.HTTP.Client (Manager)
import System.Directory (doesDirectoryExist, doesFileExist, getCurrentDirectory, listDirectory)
import System.IO.Temp (withSystemTempDirectory, withSystemTempFile)
import System.Info (os)
import System.PosixCompat.User (getEffectiveGroupID, getEffectiveUserID)
import System.Posix.User (getEffectiveGroupID, getEffectiveUserID)
import Test.Tasty
import Test.Tasty.HUnit

Expand Down
2 changes: 1 addition & 1 deletion funflow/funflow.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ library
, store
, temporary
, text >=2.0
, unix-compat
, unix
, unliftio
, unordered-containers
, utf8-string
Expand Down
2 changes: 1 addition & 1 deletion funflow/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies:
- store
- temporary
- text >= 2.0
- unix-compat
- unix
- unliftio
- unordered-containers
- utf8-string
Expand Down
2 changes: 1 addition & 1 deletion funflow/src/Funflow/Run.hs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ import System.Directory (removeDirectory)
import System.Directory.Funflow (moveDirectoryContent)
import System.IO.Temp (withSystemTempDirectory)
import System.Info (os)
import System.PosixCompat.User (getEffectiveGroupID, getEffectiveUserID)
import System.Posix.User (getEffectiveGroupID, getEffectiveUserID)

-- * Flow execution

Expand Down