build-system/haskell: Adjust to new 'modify-phases' syntax.
authorLudovic Courtès <ludo@gnu.org>
Thu, 16 Apr 2015 07:51:38 +0000 (09:51 +0200)
committerLudovic Courtès <ludo@gnu.org>
Thu, 16 Apr 2015 07:51:38 +0000 (09:51 +0200)
* guix/build/haskell-build-system.scm (%standard-phases): Add missing
  quotes, as needed since commit f8503e2.

guix/build/haskell-build-system.scm

index e17967f..d382ee4 100644 (file)
@@ -196,13 +196,13 @@ generate the cache as it would clash in user profiles."
 
 (define %standard-phases
   (modify-phases gnu:%standard-phases
-    (add-before configure setup-compiler setup-compiler)
-    (add-before install haddock haddock)
-    (add-after install register register)
-    (replace install install)
-    (replace check check)
-    (replace build build)
-    (replace configure configure)))
+    (add-before 'configure 'setup-compiler setup-compiler)
+    (add-before 'install 'haddock haddock)
+    (add-after 'install 'register register)
+    (replace 'install install)
+    (replace 'check check)
+    (replace 'build build)
+    (replace 'configure configure)))
 
 (define* (haskell-build #:key inputs (phases %standard-phases)
                         #:allow-other-keys #:rest args)