guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 64373941c17e4ea13e669665210d518507d6442e
Author: Malte Frank Gerdes <[email protected]>
AuthorDate: Fri Sep 11 14:13:04 2026 +0200

    gnu: chicken: Add chicken-http-curl.
    
    * gnu/packages/chicken.scm (chicken-http-curl): New variable.
    
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/chicken.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index 230724d8d48..648348c7847 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -22,6 +22,7 @@
 (define-module (gnu packages chicken)
   #:use-module (gnu packages)
   #:use-module (gnu packages bash)
+  #:use-module (gnu packages curl)
   #:use-module (guix gexp)
   #:use-module (guix packages)
   #:use-module (guix utils)
@@ -456,6 +457,35 @@ While trying to improve the way records can be defined, 
this implementation
 is not hygienic.")
     (license license:bsd-3)))
 
+(define-public chicken-http-curl
+  (package
+    (name "chicken-http-curl")
+    (version "0.1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://forgejo.rolando.cl/cpm/http-curl/archive/v"; version
+             ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0zzy44kf7argrg6jy4mp4rf4msqj54qnb79kmykjp5lsv5mqni2k"))))
+    (build-system chicken-build-system)
+    (arguments
+     (list
+      #:egg-name "http-curl"))
+    (inputs (list curl))
+    (native-inputs (list chicken-test))
+    (propagated-inputs
+     (list
+      chicken-intarweb
+      chicken-srfi-18))
+    (synopsis "HTTP client egg for CHICKEN Scheme based on libcurl")
+    (home-page "https://forgejo.rolando.cl/cpm/http-curl";)
+    (description "Provides robust HTTPS/TLS support out of the box with an API
+compatible with http-client.")
+    (license license:bsd-3)))
+
 (define-public chicken-intarweb
   (package
     (name "chicken-intarweb")

Reply via email to