Skip to content

Commit fcbcafa

Browse files
committed
remote: GADT -> Types.StoreRequest
1 parent dbc118f commit fcbcafa

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

hnix-store-remote/hnix-store-remote.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ library
7676
, System.Nix.Store.Remote
7777
, System.Nix.Store.Remote.Arbitrary
7878
, System.Nix.Store.Remote.Client
79-
, System.Nix.Store.Remote.GADT
8079
, System.Nix.Store.Remote.Logger
8180
, System.Nix.Store.Remote.MonadStore
8281
, System.Nix.Store.Remote.Serialize
@@ -90,6 +89,7 @@ library
9089
, System.Nix.Store.Remote.Types.Logger
9190
, System.Nix.Store.Remote.Types.ProtoVersion
9291
, System.Nix.Store.Remote.Types.StoreConfig
92+
, System.Nix.Store.Remote.Types.StoreRequest
9393
, System.Nix.Store.Remote.Types.StoreText
9494
, System.Nix.Store.Remote.Types.SubstituteMode
9595
, System.Nix.Store.Remote.Types.Verbosity

hnix-store-remote/src/System/Nix/Store/Remote/Arbitrary.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ module System.Nix.Store.Remote.Arbitrary where
55

66
import Data.Some (Some(Some))
77
import System.Nix.Arbitrary ()
8-
import System.Nix.Store.Remote.GADT
98
import System.Nix.Store.Remote.Types
109

1110
import Test.QuickCheck (Arbitrary(..), oneof)

hnix-store-remote/src/System/Nix/Store/Remote/Types.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module System.Nix.Store.Remote.Types
55
, module System.Nix.Store.Remote.Types.Logger
66
, module System.Nix.Store.Remote.Types.ProtoVersion
77
, module System.Nix.Store.Remote.Types.StoreConfig
8+
, module System.Nix.Store.Remote.Types.StoreRequest
89
, module System.Nix.Store.Remote.Types.StoreText
910
, module System.Nix.Store.Remote.Types.SubstituteMode
1011
, module System.Nix.Store.Remote.Types.Verbosity
@@ -18,6 +19,7 @@ import System.Nix.Store.Remote.Types.CheckMode
1819
import System.Nix.Store.Remote.Types.Logger
1920
import System.Nix.Store.Remote.Types.ProtoVersion
2021
import System.Nix.Store.Remote.Types.StoreConfig
22+
import System.Nix.Store.Remote.Types.StoreRequest
2123
import System.Nix.Store.Remote.Types.StoreText
2224
import System.Nix.Store.Remote.Types.SubstituteMode
2325
import System.Nix.Store.Remote.Types.Verbosity

hnix-store-remote/src/System/Nix/Store/Remote/GADT.hs renamed to hnix-store-remote/src/System/Nix/Store/Remote/Types/StoreRequest.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
{-# language GADTs #-}
2-
{-# language Rank2Types #-}
1+
{-# LANGUAGE GADTs #-}
2+
{-# LANGUAGE Rank2Types #-}
33
{-# LANGUAGE TemplateHaskell #-}
44

5-
module System.Nix.Store.Remote.GADT
5+
module System.Nix.Store.Remote.Types.StoreRequest
66
( StoreRequest(..)
77
) where
88

0 commit comments

Comments
 (0)