[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch wip-desktop updated: gnu: Add mutest.
From: |
guix-commits |
Subject: |
branch wip-desktop updated: gnu: Add mutest. |
Date: |
Wed, 24 Jun 2020 07:00:01 -0400 |
This is an automated email from the git hooks/post-receive script.
dannym pushed a commit to branch wip-desktop
in repository guix.
The following commit(s) were added to refs/heads/wip-desktop by this push:
new 0f0f3f3 gnu: Add mutest.
0f0f3f3 is described below
commit 0f0f3f3277989b2c5539489ff3cf99d53a7bc153
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Tue Jun 9 09:43:01 2020 -0400
gnu: Add mutest.
* gnu/packages/check.scm (mutest): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/check.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 2da785f..a8b30ac 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -77,9 +77,32 @@
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system go)
+ #:use-module (guix build-system meson)
#:use-module (guix build-system python)
#:use-module (guix build-system trivial))
+(define-public mutest
+ (package
+ (name "mutest")
+ (version "0.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/ebassi/mutest.git")
+ (commit "e6246c9")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0gdqwq6fvk06wld4rhnw5752hahrvhd69zrci045x25rwx90x26q"))))
+ (build-system meson-build-system)
+ (synopsis "Small C testing library")
+ (description "Mutest aims to be a small unit testing library for C
projects,
+with an API heavily modelled on high level Behavior-Driver Development
frameworks
+like Jasmine or Mocha.")
+ (home-page "https://ebassi.github.io/mutest/mutest.md.html")
+ (license license:expat)))
+
(define-public check
(package
(name "check")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch wip-desktop updated: gnu: Add mutest.,
guix-commits <=