2013-01-30 15:48:57 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-10-18 06:20:02 -04:00
|
|
|
;;; Copyright © 2013, 2014, 2015 Andreas Enge <andreas@enge.fr>
|
2015-01-11 09:43:22 -05:00
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2015-03-27 18:33:47 -04:00
|
|
|
;;; Copyright © 2015 Tomáš Čech <sleep_walker@suse.cz>
|
2022-07-06 12:00:13 -04:00
|
|
|
;;; Copyright © 2015, 2020, 2021, 2022 Ludovic Courtès <ludo@gnu.org>
|
2019-03-21 13:34:24 -04:00
|
|
|
;;; Copyright © 2016, 2017, 2019 Leo Famulari <leo@famulari.name>
|
2022-06-30 16:06:13 -04:00
|
|
|
;;; Copyright © 2017, 2019, 2020, 2022 Marius Bakke <marius@gnu.org>
|
2017-10-01 14:36:58 -04:00
|
|
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
2017-11-10 02:20:19 -05:00
|
|
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-04-18 17:00:41 -04:00
|
|
|
;;; Copyright © 2018 Roel Janssen <roel@gnu.org>
|
2021-01-04 17:58:28 -05:00
|
|
|
;;; Copyright © 2019, 2021 Ricardo Wurmus <rekado@elephly.net>
|
2020-01-14 11:59:21 -05:00
|
|
|
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
2020-06-21 18:53:07 -04:00
|
|
|
;;; Copyright © 2020 Dale Mellor <guix-devel-0brg6b@rdmp.org>
|
2020-10-10 11:00:41 -04:00
|
|
|
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2021-07-22 08:55:43 -04:00
|
|
|
;;; Copyright © 2021 Jean-Baptiste Volatier <jbv@pm.me>
|
2021-08-25 12:59:32 -04:00
|
|
|
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
|
2013-01-30 15:48:57 -05:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages curl)
|
Use #:prefix instead of #:renamer with 'symbol-prefix-proc'.
* gnu/packages/abiword.scm, gnu/packages/admin.scm, gnu/packages/aidc.scm,
gnu/packages/backup.scm, gnu/packages/bittorrent.scm,
gnu/packages/boost.scm, gnu/packages/compression.scm,
gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/dc.scm, gnu/packages/emacs.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/geeqie.scm,
gnu/packages/ghostscript.scm, gnu/packages/gimp.scm,
gnu/packages/gkrellm.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm, gnu/packages/gnuzilla.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/gv.scm, gnu/packages/image.scm,
gnu/packages/indent.scm, gnu/packages/inkscape.scm,
gnu/packages/lesstif.scm, gnu/packages/links.scm, gnu/packages/lisp.scm,
gnu/packages/lsh.scm, gnu/packages/lsof.scm, gnu/packages/maths.scm,
gnu/packages/mp3.scm, gnu/packages/openssl.scm, gnu/packages/ots.scm,
gnu/packages/pciutils.scm, gnu/packages/pcre.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm, gnu/packages/slim.scm,
gnu/packages/ssh.scm, gnu/packages/texlive.scm, gnu/packages/vim.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wv.scm,
gnu/packages/xiph.scm, gnu/packages/xml.scm, gnu/packages/xorg.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm,
guix/build/cmake-build-system.scm, guix/build/perl-build-system.scm,
guix/build/python-build-system.scm, guix/download.scm: Replaces uses of
#:renamer and 'symbol-prefix-proc' with #:prefix.
2014-09-23 16:44:22 -04:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-01-30 15:48:57 -05:00
|
|
|
#:use-module (guix packages)
|
2022-07-02 05:07:34 -04:00
|
|
|
#:use-module (guix gexp)
|
2013-01-30 15:48:57 -05:00
|
|
|
#:use-module (guix download)
|
2017-12-29 15:39:31 -05:00
|
|
|
#:use-module (guix git-download)
|
2017-08-09 15:04:04 -04:00
|
|
|
#:use-module (guix utils)
|
2020-06-21 18:53:07 -04:00
|
|
|
#:use-module (guix build-system cmake)
|
2021-08-25 12:59:32 -04:00
|
|
|
#:use-module (guix build-system copy)
|
2013-01-30 15:48:57 -05:00
|
|
|
#:use-module (guix build-system gnu)
|
2017-12-29 15:39:31 -05:00
|
|
|
#:use-module (guix build-system go)
|
2021-12-26 02:39:07 -05:00
|
|
|
#:use-module (guix build-system meson)
|
2022-05-07 04:37:35 -04:00
|
|
|
#:use-module ((guix search-paths) #:select ($SSL_CERT_DIR $SSL_CERT_FILE))
|
2014-02-11 13:17:33 -05:00
|
|
|
#:use-module (gnu packages)
|
2021-12-26 02:39:07 -05:00
|
|
|
#:use-module (gnu packages check)
|
2013-01-30 15:48:57 -05:00
|
|
|
#:use-module (gnu packages compression)
|
2017-12-29 15:39:31 -05:00
|
|
|
#:use-module (gnu packages golang)
|
2018-04-18 17:00:41 -04:00
|
|
|
#:use-module (gnu packages guile)
|
2019-02-23 11:16:25 -05:00
|
|
|
#:use-module (gnu packages kerberos)
|
2021-12-26 02:39:07 -05:00
|
|
|
#:use-module (gnu packages logging)
|
|
|
|
#:use-module (gnu packages libevent)
|
2013-01-30 15:48:57 -05:00
|
|
|
#:use-module (gnu packages libidn)
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-02-18 15:45:58 -05:00
|
|
|
#:use-module (gnu packages python)
|
2021-07-22 08:55:43 -04:00
|
|
|
#:use-module (gnu packages ssh)
|
2017-11-10 02:20:19 -05:00
|
|
|
#:use-module (gnu packages tls)
|
2020-01-17 13:18:04 -05:00
|
|
|
#:use-module (gnu packages web)
|
|
|
|
#:use-module (srfi srfi-1))
|
2013-01-30 15:48:57 -05:00
|
|
|
|
|
|
|
(define-public curl
|
|
|
|
(package
|
2022-08-29 07:00:56 -04:00
|
|
|
(name "curl")
|
|
|
|
(version "7.84.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://curl.se/download/curl-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1f2xgj0wvys9xw50h7vcbaraavjr9rxx9n06x2xfbgs7ym1qn49d"))
|
|
|
|
(patches (search-patches "curl-use-ssl-cert-env.patch"
|
2022-08-29 06:52:19 -04:00
|
|
|
"curl-nghttp2-compat.patch"
|
2022-08-29 07:00:56 -04:00
|
|
|
"curl-easy-lock.patch"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(outputs '("out"
|
|
|
|
"doc")) ;1.2 MiB of man3 pages
|
|
|
|
(inputs
|
|
|
|
(list gnutls libidn mit-krb5 `(,nghttp2 "lib") zlib))
|
|
|
|
(native-inputs
|
2022-08-29 06:56:16 -04:00
|
|
|
(list nghttp2 perl pkg-config python-minimal-wrapper))
|
2022-08-29 07:00:56 -04:00
|
|
|
(native-search-paths
|
|
|
|
;; These variables are introduced by curl-use-ssl-cert-env.patch.
|
|
|
|
(list $SSL_CERT_DIR
|
|
|
|
$SSL_CERT_FILE
|
|
|
|
;; Note: This search path is respected by the `curl` command-line
|
|
|
|
;; tool only. Patching libcurl to read it too would bring no
|
|
|
|
;; advantages and require maintaining a more complex patch.
|
|
|
|
(search-path-specification
|
|
|
|
(variable "CURL_CA_BUNDLE")
|
|
|
|
(file-type 'regular)
|
|
|
|
(separator #f) ;single entry
|
|
|
|
(files '("etc/ssl/certs/ca-certificates.crt")))))
|
|
|
|
(arguments
|
|
|
|
(list
|
|
|
|
#:disallowed-references '("doc")
|
|
|
|
#:configure-flags
|
|
|
|
#~(list "--with-gnutls"
|
|
|
|
(string-append "--with-gssapi="
|
|
|
|
(dirname (dirname
|
|
|
|
(search-input-file
|
|
|
|
%build-inputs "lib/libgssrpc.so"))))
|
|
|
|
"--disable-static")
|
2014-02-18 15:45:58 -05:00
|
|
|
#:phases
|
2022-08-29 07:00:56 -04:00
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'tweak-lib3026-test
|
|
|
|
(lambda _
|
|
|
|
;; Have that test create a hundred threads, not a thousand.
|
|
|
|
(substitute* "tests/libtest/lib3026.c"
|
|
|
|
(("NUM_THREADS .*$")
|
|
|
|
"NUM_THREADS 100\n"))))
|
|
|
|
(add-after 'unpack 'do-not-record-configure-flags
|
|
|
|
(lambda _
|
|
|
|
;; Do not save the configure options to avoid unnecessary references.
|
|
|
|
(substitute* "curl-config.in"
|
|
|
|
(("@CONFIGURE_OPTIONS@")
|
|
|
|
"\"not available\""))))
|
|
|
|
(add-after 'install 'move-man3-pages
|
|
|
|
(lambda _
|
|
|
|
;; Move section 3 man pages to "doc".
|
|
|
|
(mkdir-p (string-append #$output:doc "/share/man"))
|
|
|
|
(rename-file (string-append #$output "/share/man/man3")
|
|
|
|
(string-append #$output:doc "/share/man/man3"))))
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(substitute* "tests/runtests.pl"
|
|
|
|
(("/bin/sh") (which "sh")))
|
2014-11-18 07:55:47 -05:00
|
|
|
|
2022-08-29 07:00:56 -04:00
|
|
|
(when tests?
|
|
|
|
;; The top-level "make check" does "make -C tests quiet-test", which
|
|
|
|
;; is too quiet. Use the "test" target instead, which is more
|
|
|
|
;; verbose.
|
|
|
|
(invoke "make" "-C" "tests" "test")))))))
|
|
|
|
(synopsis "Command line tool for transferring data with URL syntax")
|
|
|
|
(description
|
|
|
|
"curl is a command line tool for transferring data with URL syntax,
|
2013-01-30 15:48:57 -05:00
|
|
|
supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP,
|
|
|
|
LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP.
|
2015-07-16 05:14:13 -04:00
|
|
|
curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP
|
|
|
|
form based upload, proxies, cookies, file transfer resume, user+password
|
|
|
|
authentication (Basic, Digest, NTLM, Negotiate, kerberos...), proxy
|
|
|
|
tunneling, and so on.")
|
2022-08-29 07:00:56 -04:00
|
|
|
(license (license:non-copyleft "file://COPYING"
|
|
|
|
"See COPYING in the distribution."))
|
|
|
|
(home-page "https://curl.haxx.se/")))
|
2017-04-19 18:16:22 -04:00
|
|
|
|
2020-01-17 13:18:04 -05:00
|
|
|
(define-public curl-minimal
|
2020-12-16 13:20:39 -05:00
|
|
|
(deprecated-package "curl-minimal" curl))
|
2020-01-17 13:18:04 -05:00
|
|
|
|
2021-07-22 08:55:43 -04:00
|
|
|
(define-public curl-ssh
|
|
|
|
(package/inherit curl
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments curl)
|
|
|
|
((#:configure-flags flags)
|
2022-08-29 07:00:56 -04:00
|
|
|
#~(cons "--with-libssh2" #$flags))))
|
2021-07-22 08:55:43 -04:00
|
|
|
(inputs
|
2022-08-29 06:56:16 -04:00
|
|
|
(modify-inputs (package-inputs curl)
|
|
|
|
(prepend libssh2)))
|
2021-07-22 08:55:43 -04:00
|
|
|
(properties `((hidden? . #t)))))
|
|
|
|
|
2017-12-29 15:39:31 -05:00
|
|
|
(define-public kurly
|
|
|
|
(package
|
|
|
|
(name "kurly")
|
2018-08-08 19:17:29 -04:00
|
|
|
(version "1.2.2")
|
2017-12-29 15:39:31 -05:00
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
2018-08-08 19:17:29 -04:00
|
|
|
(url "https://gitlab.com/davidjpeacock/kurly.git")
|
2017-12-29 15:39:31 -05:00
|
|
|
(commit (string-append "v" version))))
|
2018-03-04 04:55:08 -05:00
|
|
|
(file-name (git-file-name name version))
|
2017-12-29 15:39:31 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-08-08 19:17:29 -04:00
|
|
|
"003jv2k45hg2svhjpy5253ccd250vi2r17x2zhm51iw54kgwxipm"))))
|
2017-12-29 15:39:31 -05:00
|
|
|
(build-system go-build-system)
|
|
|
|
(arguments
|
2018-08-08 19:17:29 -04:00
|
|
|
`(#:import-path "gitlab.com/davidjpeacock/kurly"
|
2018-01-08 20:30:10 -05:00
|
|
|
#:install-source? #f
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-03-14 01:27:07 -04:00
|
|
|
(add-after 'install 'install-documentation
|
|
|
|
(lambda* (#:key import-path outputs #:allow-other-keys)
|
|
|
|
(let* ((source (string-append "src/" import-path))
|
|
|
|
(out (assoc-ref outputs "out"))
|
|
|
|
(doc (string-append out "/share/doc/" ,name "-" ,version))
|
|
|
|
(man (string-append out "/share/man/man1")))
|
|
|
|
(with-directory-excursion source
|
|
|
|
(install-file "README.md" doc)
|
|
|
|
(mkdir-p man)
|
2018-08-08 19:17:29 -04:00
|
|
|
(copy-file "doc/kurly.man"
|
2018-03-14 01:27:07 -04:00
|
|
|
(string-append man "/kurly.1")))
|
2018-01-08 20:30:10 -05:00
|
|
|
#t))))))
|
2017-12-29 15:39:31 -05:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list go-github-com-alsm-ioprogress go-github-com-aki237-nscjar
|
|
|
|
go-github-com-urfave-cli))
|
2017-12-29 15:39:31 -05:00
|
|
|
(synopsis "Command-line HTTP client")
|
|
|
|
(description "kurly is an alternative to the @code{curl} program written in
|
|
|
|
Go. kurly is designed to operate in a similar manner to curl, with select
|
|
|
|
features. Notably, kurly is not aiming for feature parity, but common flags and
|
|
|
|
mechanisms particularly within the HTTP(S) realm are to be expected. kurly does
|
|
|
|
not offer a replacement for libcurl.")
|
2018-08-08 19:17:29 -04:00
|
|
|
(home-page "https://gitlab.com/davidjpeacock/kurly")
|
2017-12-29 15:39:31 -05:00
|
|
|
(license license:asl2.0)))
|
2018-04-18 17:00:41 -04:00
|
|
|
|
|
|
|
(define-public guile-curl
|
|
|
|
(package
|
|
|
|
(name "guile-curl")
|
2021-02-26 06:52:35 -05:00
|
|
|
(version "0.9")
|
2018-04-18 17:00:41 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2019-02-17 03:58:09 -05:00
|
|
|
(uri (string-append "http://www.lonelycactus.com/tarball/"
|
|
|
|
"guile_curl-" version ".tar.gz"))
|
2018-04-18 17:00:41 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2021-02-26 06:52:35 -05:00
|
|
|
"0y7wfhilfm6vzs0wyifrrc2pj9nsxfas905c7qa5cw4i6s74ypmi"))))
|
2018-04-18 17:00:41 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2021-01-04 09:49:31 -05:00
|
|
|
`(#:modules (((guix build guile-build-system)
|
|
|
|
#:select (target-guile-effective-version))
|
|
|
|
,@%gnu-build-system-modules)
|
|
|
|
#:imported-modules ((guix build guile-build-system)
|
|
|
|
,@%gnu-build-system-modules)
|
|
|
|
#:configure-flags (list (string-append
|
2018-04-18 17:00:41 -04:00
|
|
|
"--with-guilesitedir="
|
|
|
|
(assoc-ref %outputs "out")
|
2021-01-04 09:49:31 -05:00
|
|
|
"/share/guile/site/"
|
|
|
|
(target-guile-effective-version
|
|
|
|
(assoc-ref %build-inputs "guile")))
|
2018-04-18 17:00:41 -04:00
|
|
|
(string-append
|
|
|
|
"-with-guileextensiondir="
|
|
|
|
(assoc-ref %outputs "out")
|
2021-01-04 09:49:31 -05:00
|
|
|
"/lib/guile/"
|
|
|
|
(target-guile-effective-version
|
|
|
|
(assoc-ref %build-inputs "guile"))
|
|
|
|
"/extensions"))
|
2018-04-18 17:00:41 -04:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2021-01-04 09:49:31 -05:00
|
|
|
(add-after 'unpack 'patch-undefined-references
|
|
|
|
(lambda* _
|
2021-02-26 06:52:35 -05:00
|
|
|
(substitute* "module/curl.scm"
|
2021-01-04 09:49:31 -05:00
|
|
|
;; The following #defines are missing from our curl package
|
|
|
|
;; and therefore result in the evaluation of undefined symbols.
|
|
|
|
((",CURLOPT_HAPROXYPROTOCOL") "#f")
|
|
|
|
((",CURLOPT_DISALLOW_USERNAME_IN_URL") "#f")
|
|
|
|
((",CURLOPT_TIMEVALUE_LARGE") "#f")
|
|
|
|
((",CURLOPT_DNS_SHUFFLE_ADDRESSES") "#f")
|
|
|
|
((",CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS") "#f"))))
|
2018-04-18 17:00:41 -04:00
|
|
|
(add-after 'install 'patch-extension-path
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2021-01-04 09:49:31 -05:00
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(curl.scm (string-append
|
|
|
|
out "/share/guile/site/"
|
|
|
|
(target-guile-effective-version)
|
|
|
|
"/curl.scm"))
|
|
|
|
(curl.go (string-append
|
|
|
|
out "/lib/guile/"
|
|
|
|
(target-guile-effective-version)
|
|
|
|
"/site-ccache/curl.go"))
|
|
|
|
(ext (string-append out "/lib/guile/"
|
|
|
|
(target-guile-effective-version)
|
|
|
|
"/extensions/libguile-curl")))
|
|
|
|
(substitute* curl.scm (("libguile-curl") ext))
|
|
|
|
;; The build system does not actually compile the Scheme module.
|
|
|
|
;; So we can compile it and put it in the right place in one go.
|
|
|
|
(invoke "guild" "compile" curl.scm "-o" curl.go)))))))
|
2021-12-13 11:18:24 -05:00
|
|
|
(native-inputs (list pkg-config))
|
2018-04-18 17:00:41 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list curl guile-3.0))
|
2018-04-18 17:00:41 -04:00
|
|
|
(home-page "http://www.lonelycactus.com/guile-curl.html")
|
|
|
|
(synopsis "Curl bindings for Guile")
|
|
|
|
(description "@code{guile-curl} is a project that has procedures that allow
|
|
|
|
Guile to do client-side URL transfers, like requesting documents from HTTP or
|
|
|
|
FTP servers. It is based on the curl library.")
|
|
|
|
(license license:gpl3+)))
|
2020-06-21 18:53:07 -04:00
|
|
|
|
2021-01-04 10:05:14 -05:00
|
|
|
(define-public guile2.2-curl
|
|
|
|
(package
|
|
|
|
(inherit guile-curl)
|
|
|
|
(name "guile2.2-curl")
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list curl guile-2.2))))
|
2021-01-04 10:05:14 -05:00
|
|
|
|
2020-06-21 18:53:07 -04:00
|
|
|
(define-public curlpp
|
|
|
|
(package
|
|
|
|
(name "curlpp")
|
|
|
|
(version "0.8.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
(url "https://github.com/jpbarrette/curlpp")
|
2020-06-21 18:53:07 -04:00
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(sha256
|
|
|
|
(base32 "1b0ylnnrhdax4kwjq64r1fk0i24n5ss6zfzf4hxwgslny01xiwrk"))
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
;; There are no build tests to be had.
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f))
|
|
|
|
;; The installed version needs the header files from the C library.
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list curl))
|
2020-06-21 18:53:07 -04:00
|
|
|
(synopsis "C++ wrapper around libcURL")
|
|
|
|
(description
|
|
|
|
"This package provides a free and easy-to-use client-side C++ URL
|
|
|
|
transfer library, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT,
|
|
|
|
FILE and LDAP; in particular it supports HTTPS certificates, HTTP POST, HTTP
|
|
|
|
PUT, FTP uploading, kerberos, HTTP form based upload, proxies, cookies,
|
|
|
|
user+password authentication, file transfer resume, http proxy tunneling and
|
|
|
|
more!")
|
|
|
|
(home-page "http://www.curlpp.org")
|
|
|
|
(license license:expat)))
|
2021-08-25 12:59:32 -04:00
|
|
|
|
|
|
|
(define-public h2c
|
|
|
|
(package
|
|
|
|
(name "h2c")
|
|
|
|
(version "1.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/curl/h2c")
|
|
|
|
(commit version)))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1n8z6avzhg3yb330di2y9zymsps1qp1235p29kidcp4fkmn7fgb2"))
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
(build-system copy-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:install-plan
|
|
|
|
'(("./h2c" "bin/"))))
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list perl))
|
2021-08-25 12:59:32 -04:00
|
|
|
(home-page "https://curl.se/h2c/")
|
|
|
|
(synopsis "Convert HTTP headers to a curl command line")
|
|
|
|
(description
|
|
|
|
"Provided a set of HTTP request headers, h2c outputs how to invoke
|
|
|
|
curl to obtain exactly that HTTP request.")
|
|
|
|
(license license:expat)))
|
2021-12-26 02:39:07 -05:00
|
|
|
|
|
|
|
(define-public coeurl
|
|
|
|
(package
|
|
|
|
(name "coeurl")
|
2022-03-09 18:44:55 -05:00
|
|
|
(version "0.2.0")
|
2021-12-26 02:39:07 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://nheko.im/nheko-reborn/coeurl")
|
|
|
|
(commit (string-append "v" version))))
|
2022-03-14 06:10:30 -04:00
|
|
|
(file-name (git-file-name name version))
|
2021-12-26 02:39:07 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2022-03-09 18:44:55 -05:00
|
|
|
"0kbazvrb4hzc9jr7yywd36ack1yy7bh8sh1kc4jzv6jfzvxjb0i0"))))
|
2021-12-26 02:39:07 -05:00
|
|
|
(build-system meson-build-system)
|
|
|
|
(native-inputs
|
|
|
|
(list doctest pkg-config))
|
|
|
|
(inputs
|
|
|
|
(list curl libevent spdlog))
|
|
|
|
(home-page "https://nheko.im/nheko-reborn/coeurl")
|
|
|
|
(synopsis "Simple async wrapper around CURL for C++")
|
|
|
|
(description "Coeurl is a simple library to do HTTP requests
|
|
|
|
asynchronously via cURL in C++.")
|
|
|
|
(license license:expat)))
|
2022-03-24 01:05:11 -04:00
|
|
|
|
|
|
|
(define-public curlie
|
|
|
|
(package
|
|
|
|
(name "curlie")
|
2022-04-04 23:17:44 -04:00
|
|
|
(version "1.6.9")
|
2022-03-24 01:05:11 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/rs/curlie")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2022-04-04 23:17:44 -04:00
|
|
|
"1b94wfliivfq06i5sf664nhmp3v1k0lpz33cv9lyk6s59awb2hnw"))))
|
2022-03-24 01:05:11 -04:00
|
|
|
(build-system go-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:import-path "github.com/rs/curlie"))
|
|
|
|
(inputs
|
|
|
|
(list curl go-golang-org-x-crypto go-golang-org-x-sys))
|
|
|
|
(home-page "https://curlie.io")
|
|
|
|
(synopsis "The power of curl, the ease of use of httpie")
|
|
|
|
(description "If you like the interface of HTTPie but miss the features of
|
|
|
|
curl, curlie is what you are searching for. Curlie is a frontend to
|
|
|
|
@code{curl} that adds the ease of use of @code{httpie}, without compromising
|
|
|
|
on features and performance. All @code{curl} options are exposed with syntax
|
|
|
|
sugar and output formatting inspired from @code{httpie}.")
|
|
|
|
(license license:expat)))
|