From dffc3a3d57b59e9b19099a25dd92b3c8d8288efb Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Fri, 22 Mar 2024 23:22:43 +0100 Subject: strong-type: remove install phase: no cmake targets --- packages/komodo/strong-type.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'packages/komodo/strong-type.scm') 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)) -- cgit v1.2.3