[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/15: gnu: Add theft.
From: |
guix-commits |
Subject: |
15/15: gnu: Add theft. |
Date: |
Sat, 2 Mar 2024 02:06:48 -0500 (EST) |
lilyp pushed a commit to branch master
in repository guix.
commit 4a0549be52f3f46fbce61342d8de30f7b83130c5
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Feb 24 12:01:41 2024 +0100
gnu: Add theft.
* gnu/packages/check.scm (theft): New variable.
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/check.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index a3d52427fe..2dcf33a460 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3127,6 +3127,36 @@ retried.")
allowing you to declaratively define \"match\" rules.")
(license license:bsd-3)))
+(define-public theft
+ (package
+ (name "theft")
+ (version "0.4.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/silentbicycle/theft")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1n2mkawfl2bpd4pwy3mdzxwlqjjvb5bdrr2x2gldlyqdwbk7qjhd"))
+ (snippet #~(begin
+ (delete-file "vendor/greatest.h")))))
+ (build-system gnu-build-system)
+ (arguments (list #:make-flags #~(list "VENDOR="
+ (string-append "CC="
#$(cc-for-target))
+ (string-append "PREFIX=" #$output))
+ #:test-target "test"
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'bootstrap)
+ (delete 'configure))))
+ (native-inputs (list greatest))
+ (home-page "https://github.com/silentbicycle/theft")
+ (synopsis "Property-based testing for C")
+ (description "Theft is a library for property-based testing.")
+ (license license:isc)))
+
(define-public unittest-cpp
(package
(name "unittest-cpp")
- branch master updated (9038a46751 -> 4a0549be52), guix-commits, 2024/03/02
- 15/15: gnu: Add theft.,
guix-commits <=
- 09/15: gnu: python-clingo-dl: Fix build., guix-commits, 2024/03/02
- 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