-
Notifications
You must be signed in to change notification settings - Fork 4
/
Setup.hs
22 lines (20 loc) · 1.39 KB
/
Setup.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Distribution.Simple
main = defaultMainWithHooks simpleUserHooks
{ postInst = \_ _ _ _ -> putStrLn notice
}
notice =
" \n\
\- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\
\ \n\
\ Notice: some stackage plugins have moved! \n\
\ \n\
\ cabal install stackage-cabal \n\
\ # will get you the plugins: \n\
\ # stackage-init \n\
\ # stackage-purge \n\
\ # stackage-upgrade \n\
\ \n\
\ cabal install stackage-sandbox \n\
\ # will get you the stackage-sandbox plugin \n\
\ \n\
\- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n"