[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/15: gnu: Add greatest.
From: |
guix-commits |
Subject: |
14/15: gnu: Add greatest. |
Date: |
Sat, 2 Mar 2024 02:06:48 -0500 (EST) |
lilyp pushed a commit to branch master
in repository guix.
commit 0b969af1532ab17c59273ad364ed8f00bb9bed94
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Feb 24 12:01:33 2024 +0100
gnu: Add greatest.
* gnu/packages/check.scm (greatest): New variable.
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/check.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 5428098c15..a3d52427fe 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -966,6 +966,29 @@ generation.")
similar to unit tests.")
(license license:asl2.0)))
+(define-public greatest
+ (package
+ (name "greatest")
+ (version "1.5.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/silentbicycle/greatest")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "11rajkb5m7mlzi3i3v0i27k6rrjw3x8a7bl6fkc29igzpwfbxndy"))))
+ (build-system copy-build-system)
+ (arguments (list #:install-plan
+ #~'(("greatest.h" "include/"))))
+ (home-page "https://github.com/silentbicycle/greatest")
+ (synopsis "Single-header test system")
+ (description "Greatest is a single-header test system for C, including
+macros for defining tests, grouping them into suites, and providing a test
+runner. It is quite unopinionated with most of its features being optional.")
+ (license license:isc)))
+
(define-public cpputest
(package
(name "cpputest")
- 03/15: gnu: libpotassco: Update to 0.0-2.69b677f., (continued)
- 03/15: gnu: libpotassco: Update to 0.0-2.69b677f., guix-commits, 2024/03/02
- 12/15: gnu: python-telingo: Update to 2.1.3., guix-commits, 2024/03/02
- 02/15: gnu: python-scikit-build: Install cmake modules., guix-commits, 2024/03/02
- 06/15: gnu: clingo: Build from actual sources., guix-commits, 2024/03/02
- 07/15: gnu: clingo-dl: Update to 1.5.0., guix-commits, 2024/03/02
- 05/15: gnu: clingo: Update to 5.7.1., guix-commits, 2024/03/02
- 01/15: gnu: Add wide-integer., guix-commits, 2024/03/02
- 04/15: gnu: clasp: Update to 3.3.10., guix-commits, 2024/03/02
- 10/15: gnu: python-clorm: Update to 1.5.0., guix-commits, 2024/03/02
- 08/15: gnu: python-clingo: Fix build., guix-commits, 2024/03/02
- 14/15: gnu: Add greatest.,
guix-commits <=
- 13/15: gnu: python-scikit-build: Add more non-deterministic test failures., guix-commits, 2024/03/02
- 11/15: gnu: python-plingo: Update to 1.1.0., guix-commits, 2024/03/02