We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef598be commit 76d8be5Copy full SHA for 76d8be5
gitlib-cmdline/Setup.hs
@@ -1,2 +1,6 @@
1
-import Distribution.Simple
2
-main = defaultMain
+import Distribution.Simple
+import Distribution.Simple.Program
3
+
4
+main :: IO ()
5
+main = defaultMainWithHooks simpleUserHooks
6
+ { hookedPrograms = [ simpleProgram "git" ]}
gitlib-cmdline/gitlib-cmdline.cabal
@@ -6,7 +6,7 @@ License-file: LICENSE
License: MIT
7
Author: John Wiegley
8
Maintainer: [email protected]
9
-Build-Type: Simple
+Build-Type: Custom
10
Cabal-Version: >=1.10
11
Category: Git
12
@@ -61,3 +61,5 @@ Test-suite smoke
61
, tagged >= 0.2.3.1
62
, text >= 0.11.2
63
, transformers >= 0.2.2
64
+ build-tools:
65
+ git
0 commit comments