summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/komodo/strong-type.scm10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/komodo/strong-type.scm b/packages/komodo/strong-type.scm
index 876bb1c..9961234 100644
--- a/packages/komodo/strong-type.scm
+++ b/packages/komodo/strong-type.scm
@@ -28,6 +28,9 @@
;; ABSTRACTION LAYER -2
+(define delete-install-phase
+ `(delete 'install))
+
(define strong-type-git
(string-append strong-type-github git-extension))
@@ -36,6 +39,10 @@
(define strong-type-content-hash
(content-hash (base32 strong-type-hash)))
+(define strong-type-phases
+ `(modify-phases %standard-phases
+ ,delete-install-phase))
+
(define strong-type-git-reference
(git-reference (url strong-type-git)
(commit strong-type-version)))
@@ -43,7 +50,8 @@
;; ABSTRACTION LAYER -0
(define get-strong-type-arguments
- (list #:tests? strong-type-tests))
+ (list #:phases strong-type-phases
+ #:tests? strong-type-tests))
(define get-strong-type-description
(string-concatenate strong-type-description-lines))