guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: curl: Re-order fields.


From: guix-commits
Subject: 02/03: gnu: curl: Re-order fields.
Date: Thu, 14 Mar 2024 14:52:12 -0400 (EDT)

apteryx pushed a commit to branch core-updates
in repository guix.

commit ce102e4c0233c0803a97f982c9b1280e33136646
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Mar 14 14:33:25 2024 -0400

    gnu: curl: Re-order fields.
    
    * gnu/packages/curl.scm (curl): Order the fields in the more customary
    ordering.
    
    Change-Id: I7caa3c4d27668a29375166e5553ffc4112c85783
---
 gnu/packages/curl.scm | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index b035605d5f..573461b379 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -75,25 +75,9 @@
                (base32
                 "1sqfflilf7mcz1g03lazyr6v6pf1rsrzprrknsir10hdwawqvas2"))
               (patches (search-patches "curl-use-ssl-cert-env.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
-     (list nghttp2 perl pkg-config python-minimal-wrapper))
-    (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")))))
+    (build-system gnu-build-system)
     (arguments
      (list
       #:disallowed-references '("doc")
@@ -163,6 +147,22 @@
                           (display "1501\n" port)
                           (close port)))))
                  #~()))))
+    (native-inputs
+     (list nghttp2 perl pkg-config python-minimal-wrapper))
+    (inputs
+     (list gnutls libidn mit-krb5 `(,nghttp2 "lib") zlib))
+    (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")))))
     (synopsis "Command line tool for transferring data with URL syntax")
     (description
      "curl is a command line tool for transferring data with URL syntax,



reply via email to

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