(cabal check) Add "No internal name clash" test
[cabal.git] / cabal-testsuite / PackageTests / ShowBuildInfo / Custom / Setup.hs
bloba1825767ed7f0978f845e8009a648aceef18eb55
1 -- Setup.hs taken from 'cabal-testsuite/Setup.hs'
2 {-# LANGUAGE Haskell2010 #-}
3 module Main (main) where
5 import Distribution.Simple
7 main :: IO ()
8 main = defaultMainWithHooks simpleUserHooks
9 { buildHook = \pkg lbi hooks flags -> do
10 putStrLn "Custom Setup.hs has been invoked!"
11 buildHook simpleUserHooks pkg lbi hooks flags