summaryrefslogtreecommitdiff
path: root/Setup.hs
diff options
context:
space:
mode:
authorJoey Hess <id@joeyh.name>2015-12-15 17:47:59 -0700
committerJoey Hess <id@joeyh.name>2015-12-15 17:47:59 -0700
commit7c12f0ac9224246dac308e837bccb5b2157062ee (patch)
tree0caa943db39f9a2bfad404c547acda354076b46a /Setup.hs
downloadgit-repair-7c12f0ac9224246dac308e837bccb5b2157062ee.tar.gz
Import git-repair_1.20151215.orig.tar.xz
[dgit import orig git-repair_1.20151215.orig.tar.xz]
Diffstat (limited to 'Setup.hs')
-rw-r--r--Setup.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Setup.hs b/Setup.hs
new file mode 100644
index 0000000..03c23a3
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,14 @@
+{- cabal setup file -}
+
+import Distribution.Simple
+import Distribution.Simple.Setup
+
+import qualified Build.Configure as Configure
+
+main = defaultMainWithHooks simpleUserHooks
+ { preConf = configure
+ }
+
+configure _ _ = do
+ Configure.run Configure.tests
+ return (Nothing, [])