summaryrefslogtreecommitdiff
path: root/guix/build/haskell-build-system.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix/build/haskell-build-system.scm')
-rw-r--r--guix/build/haskell-build-system.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/guix/build/haskell-build-system.scm b/guix/build/haskell-build-system.scm
index e17967fb72..d382ee403d 100644
--- a/guix/build/haskell-build-system.scm
+++ b/guix/build/haskell-build-system.scm
@@ -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)