summaryrefslogtreecommitdiff
path: root/packages/komodo/strong-type.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-22 23:22:43 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-22 23:22:43 +0100
commitdffc3a3d57b59e9b19099a25dd92b3c8d8288efb (patch)
tree8e7932668cde2e1da6808a353f917b21aac6d48f /packages/komodo/strong-type.scm
parentac68ec1988177a81f2cf6f700e614c40fecce940 (diff)
strong-type: remove install phase: no cmake targets
Diffstat (limited to 'packages/komodo/strong-type.scm')
-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))