Control.Monad.State import fix for debian stable
It doesn't export `state` there, so hiding it fails. Just list explicitly what we use.
This commit is contained in:
parent
168f010fdf
commit
33d23a4ef9
1 changed files with 2 additions and 1 deletions
3
Annex.hs
3
Annex.hs
|
@ -16,7 +16,8 @@ module Annex (
|
||||||
gitRepo
|
gitRepo
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import Control.Monad.State hiding (state)
|
import Control.Monad.State
|
||||||
|
(liftIO, StateT, runStateT, evalStateT, liftM, get, put)
|
||||||
|
|
||||||
import qualified GitRepo as Git
|
import qualified GitRepo as Git
|
||||||
import qualified GitQueue
|
import qualified GitQueue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue