diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-02-24 12:01:33 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-03-02 08:00:15 +0100 |
commit | 0b969af1532ab17c59273ad364ed8f00bb9bed94 (patch) | |
tree | b6a82d4170e52b25d27eaa544ec5f0da1789c947 | |
parent | c8837f8f037114d7d0590facc638bbd82963cb9b (diff) | |
download | guix-0b969af1532ab17c59273ad364ed8f00bb9bed94.tar.gz |
gnu: Add greatest.
* gnu/packages/check.scm (greatest): New variable. Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/check.scm | 23 |
1 files changed, 23 insertions, 0 deletions
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") |