guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

35/402: gnu: Add mutest.


From: guix-commits
Subject: 35/402: gnu: Add mutest.
Date: Tue, 18 Aug 2020 16:46:48 -0400 (EDT)

dannym pushed a commit to branch wip-desktop
in repository guix.

commit 8afd4ba3b9e27ab1b06a9b9a6dba10cf4517812b
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 8aa64e2..ae1ddfc 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -78,9 +78,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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]