summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-22 23:08:29 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-22 23:08:29 +0100
commit435c7b06ea2eb9a72a2b3789556b675a11646b57 (patch)
tree5693ec7153195921fb0d6544fedbadc9128be520 /packages
parent64de6be182a5416c88d366a12d8582c29f70a615 (diff)
strong-type: disable tests: no testing target in cmake
Diffstat (limited to 'packages')
-rw-r--r--packages/komodo/strong-type.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/komodo/strong-type.scm b/packages/komodo/strong-type.scm
index 781a04b..376115f 100644
--- a/packages/komodo/strong-type.scm
+++ b/packages/komodo/strong-type.scm
@@ -22,6 +22,8 @@
(define strong-type-synopsis-lines
(list "C++ implementation of strong types"))
+(define strong-type-tests #f)
+
(define strong-type-version "1.0.3")
;; ABSTRACTION LAYER -2
@@ -40,6 +42,9 @@
;; ABSTRACTION LAYER -0
+(define get-strong-type-arguments
+ (list #:tests? strong-type-tests))
+
(define get-strong-type-description
(string-concatenate strong-type-description-lines))
@@ -64,6 +69,7 @@
(version get-strong-type-version)
(source get-strong-type-origin)
(build-system cmake-build-system)
+ (arguments get-strong-type-arguments)
(synopsis get-strong-type-synopsis)
(description get-strong-type-description)
(license license:expat)