2013-01-30 20:48:57 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-10-18 10:20:02 +00:00
|
|
|
;;; Copyright © 2013, 2014, 2015 Andreas Enge <andreas@enge.fr>
|
2015-01-11 14:43:22 +00:00
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2015-03-27 22:33:47 +00:00
|
|
|
;;; Copyright © 2015 Tomáš Čech <sleep_walker@suse.cz>
|
2022-07-06 16:00:13 +00:00
|
|
|
;;; Copyright © 2015, 2020, 2021, 2022 Ludovic Courtès <ludo@gnu.org>
|
2019-03-21 17:34:24 +00:00
|
|
|
;;; Copyright © 2016, 2017, 2019 Leo Famulari <leo@famulari.name>
|
2022-06-30 20:06:13 +00:00
|
|
|
;;; Copyright © 2017, 2019, 2020, 2022 Marius Bakke <marius@gnu.org>
|
2023-02-12 13:17:27 +00:00
|
|
|
;;; Copyright © 2017, 2023 Efraim Flashner <efraim@flashner.co.il>
|
2017-11-10 07:20:19 +00:00
|
|
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-04-18 21:00:41 +00:00
|
|
|
;;; Copyright © 2018 Roel Janssen <roel@gnu.org>
|
2021-01-04 22:58:28 +00:00
|
|
|
;;; Copyright © 2019, 2021 Ricardo Wurmus <rekado@elephly.net>
|
2020-01-14 16:59:21 +00:00
|
|
|
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
2020-06-21 22:53:07 +00:00
|
|
|
;;; Copyright © 2020 Dale Mellor <guix-devel-0brg6b@rdmp.org>
|
2023-06-07 19:00:19 +00:00
|
|
|
;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
2021-07-22 12:55:43 +00:00
|
|
|
;;; Copyright © 2021 Jean-Baptiste Volatier <jbv@pm.me>
|
2021-08-25 16:59:32 +00:00
|
|
|
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
|
2023-04-21 20:53:29 +00:00
|
|
|
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
2023-11-05 21:30:38 +00:00
|
|
|
;;; Copyright © 2023 John Kehayias <john.kehayias@protonmail.com>
|
2013-01-30 20:48:57 +00: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 20:44:22 +00:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-01-30 20:48:57 +00:00
|
|
|
#:use-module (guix packages)
|
2022-07-02 09:07:34 +00:00
|
|
|
#:use-module (guix gexp)
|
2013-01-30 20:48:57 +00:00
|
|
|
#:use-module (guix download)
|
2017-12-29 20:39:31 +00:00
|
|
|
#:use-module (guix git-download)
|
2017-08-09 19:04:04 +00:00
|
|
|
#:use-module (guix utils)
|
2020-06-21 22:53:07 +00:00
|
|
|
#:use-module (guix build-system cmake)
|
2021-08-25 16:59:32 +00:00
|
|
|
#:use-module (guix build-system copy)
|
2013-01-30 20:48:57 +00:00
|
|
|
#:use-module (guix build-system gnu)
|
2017-12-29 20:39:31 +00:00
|
|
|
#:use-module (guix build-system go)
|
2021-12-26 07:39:07 +00:00
|
|
|
#:use-module (guix build-system meson)
|
2022-05-07 08:37:35 +00:00
|
|
|
#:use-module ((guix search-paths) #:select ($SSL_CERT_DIR $SSL_CERT_FILE))
|
2014-02-11 18:17:33 +00:00
|
|
|
#:use-module (gnu packages)
|
2021-12-26 07:39:07 +00:00
|
|
|
#:use-module (gnu packages check)
|
2013-01-30 20:48:57 +00:00
|
|
|
#:use-module (gnu packages compression)
|
2017-12-29 20:39:31 +00:00
|
|
|
#:use-module (gnu packages golang)
|
2024-02-07 20:53:56 +00:00
|
|
|
#:use-module (gnu packages golang-build)
|
2018-04-18 21:00:41 +00:00
|
|
|
#:use-module (gnu packages guile)
|
2019-02-23 16:16:25 +00:00
|
|
|
#:use-module (gnu packages kerberos)
|
2021-12-26 07:39:07 +00:00
|
|
|
#:use-module (gnu packages logging)
|
|
|
|
#:use-module (gnu packages libevent)
|
2013-01-30 20:48:57 +00:00
|
|
|
#:use-module (gnu packages libidn)
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-02-18 20:45:58 +00:00
|
|
|
#:use-module (gnu packages python)
|
2021-07-22 12:55:43 +00:00
|
|
|
#:use-module (gnu packages ssh)
|
2017-11-10 07:20:19 +00:00
|
|
|
#:use-module (gnu packages tls)
|
2020-01-17 18:18:04 +00:00
|
|
|
#:use-module (gnu packages web)
|
|
|
|
#:use-module (srfi srfi-1))
|
2013-01-30 20:48:57 +00:00
|
|
|
|
|
|
|
(define-public curl
|
|
|
|
(package
|
2022-08-29 11:00:56 +00:00
|
|
|
(name "curl")
|
2023-12-17 06:11:32 +00:00
|
|
|
(version "8.5.0")
|
2022-08-29 11:00:56 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://curl.se/download/curl-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2023-12-17 06:11:32 +00:00
|
|
|
"1sqfflilf7mcz1g03lazyr6v6pf1rsrzprrknsir10hdwawqvas2"))
|
2022-09-01 20:43:58 +00:00
|
|
|
(patches (search-patches "curl-use-ssl-cert-env.patch"))))
|
2022-08-29 11:00:56 +00:00
|
|
|
(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 10:56:16 +00:00
|
|
|
(list nghttp2 perl pkg-config python-minimal-wrapper))
|
2022-08-29 11:00:56 +00: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 20:45:58 +00:00
|
|
|
#:phases
|
2022-08-29 11:00:56 +00:00
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(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
|
2023-11-05 22:17:02 +00:00
|
|
|
(lambda* (#:key tests? parallel-tests? make-flags #:allow-other-keys)
|
2022-08-29 11:00:56 +00:00
|
|
|
(substitute* "tests/runtests.pl"
|
|
|
|
(("/bin/sh") (which "sh")))
|
|
|
|
(when tests?
|
2023-11-05 22:17:02 +00:00
|
|
|
(let* ((job-count (string-append
|
|
|
|
"-j"
|
|
|
|
(if parallel-tests?
|
|
|
|
(number->string (parallel-job-count))
|
|
|
|
"1")))
|
2023-12-17 06:11:32 +00:00
|
|
|
;; Ignore test 1477 due to a missing file in the 8.5.0
|
|
|
|
;; release. See
|
|
|
|
;; <https://github.com/curl/curl/issues/12462>.
|
2023-11-05 22:17:02 +00:00
|
|
|
(arguments `("-C" "tests" "test"
|
|
|
|
,@make-flags
|
2023-11-15 14:42:39 +00:00
|
|
|
,(if #$(or (system-hurd?)
|
|
|
|
(target-arm32?)
|
|
|
|
(target-aarch64?))
|
2023-11-05 21:30:38 +00:00
|
|
|
;; protocol FAIL
|
2023-12-25 09:36:20 +00:00
|
|
|
(string-append "TFLAGS=~1474 "
|
|
|
|
"!1477 "
|
|
|
|
job-count)
|
2023-12-17 06:11:32 +00:00
|
|
|
(string-append "TFLAGS=\"~1477 "
|
|
|
|
job-count "\"")))))
|
2023-11-05 21:30:38 +00:00
|
|
|
;; The top-level "make check" does "make -C tests quiet-test", which
|
|
|
|
;; is too quiet. Use the "test" target instead, which is more
|
|
|
|
;; verbose.
|
|
|
|
(apply invoke "make" arguments)))))
|
2023-06-07 19:00:19 +00:00
|
|
|
#$@(if (system-hurd?)
|
|
|
|
#~((add-after 'unpack 'skip-tests
|
|
|
|
(lambda _
|
|
|
|
(let ((port (open-file "tests/data/DISABLED" "a")))
|
|
|
|
(display "526\n" port)
|
|
|
|
(display "527\n" port)
|
|
|
|
(display "532\n" port)
|
|
|
|
(display "533\n" port)
|
|
|
|
(display "537\n" port)
|
|
|
|
(display "546\n" port)
|
2023-11-30 06:05:54 +00:00
|
|
|
(display "564\n" port)
|
2023-06-07 19:00:19 +00:00
|
|
|
(display "575\n" port)
|
|
|
|
(display "1021\n" port)
|
|
|
|
(display "1501\n" port)
|
|
|
|
(close port)))))
|
|
|
|
#~()))))
|
2022-08-29 11:00:56 +00:00
|
|
|
(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 20:48:57 +00: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 09:14:13 +00: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 11:00:56 +00:00
|
|
|
(license (license:non-copyleft "file://COPYING"
|
|
|
|
"See COPYING in the distribution."))
|
|
|
|
(home-page "https://curl.haxx.se/")))
|
2017-04-19 22:16:22 +00:00
|
|
|
|
2021-07-22 12:55:43 +00:00
|
|
|
(define-public curl-ssh
|
|
|
|
(package/inherit curl
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments curl)
|
|
|
|
((#:configure-flags flags)
|
2022-08-29 11:00:56 +00:00
|
|
|
#~(cons "--with-libssh2" #$flags))))
|
2021-07-22 12:55:43 +00:00
|
|
|
(inputs
|
2022-08-29 10:56:16 +00:00
|
|
|
(modify-inputs (package-inputs curl)
|
|
|
|
(prepend libssh2)))
|
2021-07-22 12:55:43 +00:00
|
|
|
(properties `((hidden? . #t)))))
|
|
|
|
|
2017-12-29 20:39:31 +00:00
|
|
|
(define-public kurly
|
|
|
|
(package
|
|
|
|
(name "kurly")
|
2018-08-08 23:17:29 +00:00
|
|
|
(version "1.2.2")
|
2017-12-29 20:39:31 +00:00
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
2018-08-08 23:17:29 +00:00
|
|
|
(url "https://gitlab.com/davidjpeacock/kurly.git")
|
2017-12-29 20:39:31 +00:00
|
|
|
(commit (string-append "v" version))))
|
2018-03-04 09:55:08 +00:00
|
|
|
(file-name (git-file-name name version))
|
2017-12-29 20:39:31 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-08-08 23:17:29 +00:00
|
|
|
"003jv2k45hg2svhjpy5253ccd250vi2r17x2zhm51iw54kgwxipm"))))
|
2017-12-29 20:39:31 +00:00
|
|
|
(build-system go-build-system)
|
|
|
|
(arguments
|
2018-08-08 23:17:29 +00:00
|
|
|
`(#:import-path "gitlab.com/davidjpeacock/kurly"
|
2018-01-09 01:30:10 +00:00
|
|
|
#:install-source? #f
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-03-14 05:27:07 +00: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 23:17:29 +00:00
|
|
|
(copy-file "doc/kurly.man"
|
2018-03-14 05:27:07 +00:00
|
|
|
(string-append man "/kurly.1")))
|
2018-01-09 01:30:10 +00:00
|
|
|
#t))))))
|
2017-12-29 20:39:31 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list go-github-com-alsm-ioprogress go-github-com-aki237-nscjar
|
|
|
|
go-github-com-urfave-cli))
|
2017-12-29 20:39:31 +00: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 23:17:29 +00:00
|
|
|
(home-page "https://gitlab.com/davidjpeacock/kurly")
|
2017-12-29 20:39:31 +00:00
|
|
|
(license license:asl2.0)))
|
2018-04-18 21:00:41 +00:00
|
|
|
|
|
|
|
(define-public guile-curl
|
|
|
|
(package
|
|
|
|
(name "guile-curl")
|
2021-02-26 11:52:35 +00:00
|
|
|
(version "0.9")
|
2018-04-18 21:00:41 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2019-02-17 08:58:09 +00:00
|
|
|
(uri (string-append "http://www.lonelycactus.com/tarball/"
|
|
|
|
"guile_curl-" version ".tar.gz"))
|
2018-04-18 21:00:41 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2021-02-26 11:52:35 +00:00
|
|
|
"0y7wfhilfm6vzs0wyifrrc2pj9nsxfas905c7qa5cw4i6s74ypmi"))))
|
2018-04-18 21:00:41 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2021-01-04 14:49:31 +00: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 21:00:41 +00:00
|
|
|
"--with-guilesitedir="
|
|
|
|
(assoc-ref %outputs "out")
|
2021-01-04 14:49:31 +00:00
|
|
|
"/share/guile/site/"
|
|
|
|
(target-guile-effective-version
|
|
|
|
(assoc-ref %build-inputs "guile")))
|
2018-04-18 21:00:41 +00:00
|
|
|
(string-append
|
|
|
|
"-with-guileextensiondir="
|
|
|
|
(assoc-ref %outputs "out")
|
2021-01-04 14:49:31 +00:00
|
|
|
"/lib/guile/"
|
|
|
|
(target-guile-effective-version
|
|
|
|
(assoc-ref %build-inputs "guile"))
|
|
|
|
"/extensions"))
|
2018-04-18 21:00:41 +00:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2021-01-04 14:49:31 +00:00
|
|
|
(add-after 'unpack 'patch-undefined-references
|
|
|
|
(lambda* _
|
2021-02-26 11:52:35 +00:00
|
|
|
(substitute* "module/curl.scm"
|
2021-01-04 14:49:31 +00: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 21:00:41 +00:00
|
|
|
(add-after 'install 'patch-extension-path
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2021-01-04 14:49:31 +00: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 16:18:24 +00:00
|
|
|
(native-inputs (list pkg-config))
|
2018-04-18 21:00:41 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list curl guile-3.0))
|
2018-04-18 21:00:41 +00: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 22:53:07 +00:00
|
|
|
|
2021-01-04 15:05:14 +00:00
|
|
|
(define-public guile2.2-curl
|
|
|
|
(package
|
|
|
|
(inherit guile-curl)
|
|
|
|
(name "guile2.2-curl")
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list curl guile-2.2))))
|
2021-01-04 15:05:14 +00:00
|
|
|
|
2020-06-21 22:53:07 +00: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 20:53:28 +00:00
|
|
|
(url "https://github.com/jpbarrette/curlpp")
|
2020-06-21 22:53:07 +00: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 16:18:24 +00:00
|
|
|
(list curl))
|
2020-06-21 22:53:07 +00: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!")
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-12 00:00:00 +00:00
|
|
|
(home-page "https://www.curlpp.org")
|
2020-06-21 22:53:07 +00:00
|
|
|
(license license:expat)))
|
2021-08-25 16:59:32 +00: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 16:18:24 +00:00
|
|
|
(list perl))
|
2021-08-25 16:59:32 +00: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 07:39:07 +00:00
|
|
|
|
|
|
|
(define-public coeurl
|
|
|
|
(package
|
|
|
|
(name "coeurl")
|
2023-02-12 13:17:27 +00:00
|
|
|
(version "0.3.0")
|
2021-12-26 07:39:07 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://nheko.im/nheko-reborn/coeurl")
|
|
|
|
(commit (string-append "v" version))))
|
2022-03-14 10:10:30 +00:00
|
|
|
(file-name (git-file-name name version))
|
2021-12-26 07:39:07 +00:00
|
|
|
(sha256
|
2023-02-12 13:17:27 +00:00
|
|
|
(base32 "1b435c2szwibm4i4r7mh22klyv9ncdkwkiy95p4xjfalsx4ripxh"))))
|
2021-12-26 07:39:07 +00: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 05:05:11 +00:00
|
|
|
|
|
|
|
(define-public curlie
|
|
|
|
(package
|
|
|
|
(name "curlie")
|
2023-10-19 01:04:55 +00:00
|
|
|
(version "1.7.2")
|
2022-03-24 05:05:11 +00: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
|
2023-10-19 01:04:55 +00:00
|
|
|
"04gwd9sqpykappnzyw9icgn5253cx1vwpr2h1fg7sgkyq3fjmsv0"))))
|
2022-03-24 05:05:11 +00:00
|
|
|
(build-system go-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:import-path "github.com/rs/curlie"))
|
2023-04-22 16:13:42 +00:00
|
|
|
(inputs (list curl
|
|
|
|
go-golang-org-x-crypto
|
|
|
|
go-golang-org-x-sys
|
|
|
|
go-golang-org-x-term))
|
2022-03-24 05:05:11 +00:00
|
|
|
(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)))
|
2023-04-21 20:53:29 +00:00
|
|
|
|
|
|
|
(define-public trurl
|
|
|
|
(package
|
|
|
|
(name "trurl")
|
2024-01-23 14:01:51 +00:00
|
|
|
(version "0.9")
|
2023-04-21 20:53:29 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/curl/trurl")
|
|
|
|
(commit (string-append name "-" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
2024-01-23 14:01:51 +00:00
|
|
|
(base32 "10gsl0fdpybfcffmgf3qww7cpw3ifczl601042a2mqmwwrlx5zj7"))))
|
2023-04-21 20:53:29 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
(list
|
|
|
|
#:test-target "test"
|
|
|
|
#:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
|
|
|
(string-append "PREFIX=" #$output))
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(delete 'configure))))
|
|
|
|
(native-inputs (list python))
|
2023-04-25 13:21:05 +00:00
|
|
|
(inputs (list curl))
|
2023-04-21 20:53:29 +00:00
|
|
|
(home-page "https://curl.se/trurl/")
|
2023-07-09 00:00:00 +00:00
|
|
|
(synopsis "Command line tool for URL parsing and manipulation")
|
|
|
|
(description "@code{trurl} is a command line tool that parses and
|
|
|
|
manipulates URLs, designed to help shell script authors everywhere.
|
2023-04-21 20:53:29 +00:00
|
|
|
|
2023-07-09 00:00:00 +00:00
|
|
|
It is similar in spirit to @code{tr}. Here, @code{tr} stands for translate or
|
|
|
|
transpose.")
|
2023-04-21 20:53:29 +00:00
|
|
|
(license (license:non-copyleft "file://COPYING"
|
|
|
|
"See COPYING in the distribution."))))
|