diff --git a/guix/build/haskell-build-system.scm b/guix/build/haskell-build-system.scm
index e17967fb72efb24e423a8436ae1362b44f530485..d382ee403d452c040d288702f4138c6bc51f7434 100644
--- a/guix/build/haskell-build-system.scm
+++ b/guix/build/haskell-build-system.scm
@@ -196,13 +196,13 @@ (define* (haddock #:key outputs haddock? haddock-flags #:allow-other-keys)
 
 (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)