guix-patches
[Top][All Lists]
Advanced

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

[bug#63866] [PATCH 13/16] gnu: Add perl-test-cmd.


From: gemmaro
Subject: [bug#63866] [PATCH 13/16] gnu: Add perl-test-cmd.
Date: Sat, 3 Jun 2023 14:05:48 +0900

* gnu/packages/perl-check.scm (perl-test-cmd): New variable.
---
 gnu/packages/perl-check.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm
index 467c23e249e..1350a6f2cff 100644
--- a/gnu/packages/perl-check.scm
+++ b/gnu/packages/perl-check.scm
@@ -252,6 +252,28 @@ (define-public perl-test-cleannamespaces
 called as methods, which usually isn't want you want.")
     (license perl-license)))
 
+(define-public perl-test-cmd
+  (package
+    (name "perl-test-cmd")
+    (version "1.09")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/N/NE/NEILB/Test-Cmd-" version
+                    ".tar.gz"))
+              (sha256
+               (base32
+                "114nfafwfxxn7kig265b7lg0znb5ybvc282sjjwf14g7vpn20cyg"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/Test-Cmd";)
+    (synopsis "Perl module for portable testing of commands and scripts")
+    (description
+     "The @code{Test::Cmd} module provides a low-level framework for
+portable automated testing of executable commands and scripts (in any
+language, not just Perl), especially commands and scripts that
+interact with the file system.")
+    (license perl-license)))
+
 (define-public perl-test-command
   (package
     (name "perl-test-command")
-- 
2.40.1






reply via email to

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