guix-commits
[Top][All Lists]
Advanced

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

140/295: gnu: Add mutest.


From: guix-commits
Subject: 140/295: gnu: Add mutest.
Date: Mon, 27 Jul 2020 06:25:52 -0400 (EDT)

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

commit 53594a2506d4198ea7a9bbabfcd3429b59c636f6
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 cca938b..85a24da 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")



reply via email to

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