[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#46792] [PATCH] gnu: guile-curl: Update to 0.9.
From: |
Xinglu Chen |
Subject: |
[bug#46792] [PATCH] gnu: guile-curl: Update to 0.9. |
Date: |
Fri, 26 Feb 2021 15:27:34 +0100 |
On Fri, Feb 26 2021, Léo Le Bouter via Guix-patches via wrote:
> Hello!
>
> Could you use this package update with some software? GNU Guix does not
> have any package that actually uses it.
>
> Once I have a bit more assurance that this works correctly when used,
> LGTM!
I tried one of their example files and it worked as expected.
#+begin_src scheme
(use-modules (curl))
(define handle (curl-easy-init))
(curl-easy-setopt handle 'url "http://www.gnu.org")
(display (curl-easy-perform handle))
#+end_src