guix-patches
[Top][All Lists]
Advanced

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

[bug#67963] [PATCH v2 13/37] gnu: Add perl-fcgi-client.


From: Felix Lechner
Subject: [bug#67963] [PATCH v2 13/37] gnu: Add perl-fcgi-client.
Date: Tue, 16 Jan 2024 14:12:51 -0800

* gnu/packages/web.scm (perl-fcgi-client): New variable.

Change-Id: I50b690940e2b5a9162f92d0a6550a3e7f46fc6c9
---
 gnu/packages/web.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 5d873e0884..08231347c2 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -3292,6 +3292,27 @@ (define-public perl-encode-locale
 with Encode::decode(locale => $string).")
     (home-page "https://metacpan.org/release/Encode-Locale";)))
 
+(define-public perl-fcgi-client
+  (package
+    (name "perl-fcgi-client")
+    (version "0.09")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/T/TO/TOKUHIROM/FCGI-Client-" version
+             ".tar.gz"))
+       (sha256
+        (base32 "1s11casbv0jmkcl5dk8i2vhfy1nc8rg43d3bg923zassrq4wndym"))))
+    (build-system perl-build-system)
+    (native-inputs (list perl-module-build-tiny))
+    (propagated-inputs (list perl-moo
+                             perl-type-tiny))
+    (home-page "https://metacpan.org/release/FCGI-Client";)
+    (synopsis "Client library for the FastCGI protocol")
+    (description "FCGI::Client is client library for fastcgi protocol.")
+    (license license:perl-license)))
+
 (define-public perl-feed-find
   (package
     (name "perl-feed-find")
-- 
2.41.0






reply via email to

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