forked from faylang/fay
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetup.hs
21 lines (17 loc) · 817 Bytes
/
Setup.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE NoImplicitPrelude #-}
module Main where
import "base" Prelude
import Distribution.PackageDescription
import Distribution.Simple
main =
defaultMainWithHooks simpleUserHooks
{ postInst = \_ _ _ _ -> putStrLn fayBaseReminder
}
fayBaseReminder =
" \n\
\- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\
\ \n\
\ You also need to install fay-base! \n\
\ \n\
\- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n"