[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/20: gnu: Add ghc-proctest.
From: |
guix-commits |
Subject: |
02/20: gnu: Add ghc-proctest. |
Date: |
Fri, 7 Jul 2023 09:31:44 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 549654ab5679e45e8bed4eac500c719199348da8
Author: zamfofex <zamfofex@twdb.moe>
AuthorDate: Wed Jun 14 09:48:41 2023 -0300
gnu: Add ghc-proctest.
* gnu/packages/haskell-check.scm (ghc-proctest): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/haskell-check.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm
index da05582400..5447ecec1e 100644
--- a/gnu/packages/haskell-check.scm
+++ b/gnu/packages/haskell-check.scm
@@ -14,6 +14,7 @@
;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
;;; Copyright © 2020 Carlo Holl <carloholl@gmail.com>
;;; Copyright © 2021 John Kehayias <john.kehayias@protonmail.com>
+;;; Copyright © 2023 zamfofex <zamfofex@twdb.moe>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1180,3 +1181,26 @@ result of golden tests.")
"Integrate @@inspection-testing@@ into @@tasty@@ test suites.")
(license license:expat)))
+(define-public ghc-proctest
+ (package
+ (name "ghc-proctest")
+ (version "0.1.3.0")
+ (source (origin
+ (method url-fetch)
+ (uri (hackage-uri "proctest" version))
+ (sha256
+ (base32
+ "02iz323arx9zwclvspgaaqz81bp6jdnj89pjm08n2gamg39zsbdn"))))
+ (build-system haskell-build-system)
+ (properties '((upstream-name . "proctest")))
+ (inputs (list ghc-hunit ghc-hspec ghc-quickcheck))
+ (home-page "https://github.com/nh2/proctest")
+ (synopsis "IO library for testing interactive command line programs")
+ (description
+ "This package provides an IO library for testing interactive command line
+programs. Proctest aims to simplify interacting with and testing terminal
+programs, providing convenience functions for starting programs and reading
+their output. All blocking operations support timeouts so that misbehaving
+programs cannot block your test pipeline. Find more examples and contribute
+at @url{https://github.com/nh2/proctest}.")
+ (license license:expat)))
- branch master updated (ba1fe203b2 -> 849f31d574), guix-commits, 2023/07/07
- 02/20: gnu: Add ghc-proctest.,
guix-commits <=
- 05/20: gnu: Add ghc-indexed-profunctors., guix-commits, 2023/07/07
- 09/20: gnu: Add ghc-sdl2-ttf., guix-commits, 2023/07/07
- 20/20: gnu: Add Plunder., guix-commits, 2023/07/07
- 04/20: gnu: Add ghc-constraints-extras., guix-commits, 2023/07/07
- 07/20: gnu: Add ghc-generic-lens., guix-commits, 2023/07/07
- 08/20: gnu: Add ghc-these-lens., guix-commits, 2023/07/07
- 16/20: gnu: Add ghc-patch., guix-commits, 2023/07/07
- 06/20: gnu: Add ghc-generic-lens-core., guix-commits, 2023/07/07
- 18/20: gnu: Add ghc-reflex., guix-commits, 2023/07/07
- 10/20: gnu: Add ghc-sdl2-gfx., guix-commits, 2023/07/07