guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: wget2: Add more support libraries.


From: guix-commits
Subject: 02/02: gnu: wget2: Add more support libraries.
Date: Sun, 3 Sep 2023 04:21:58 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 9d2e6323775371ab0ccaec0fc1df3b50335c41ea
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Sep 3 11:19:16 2023 +0300

    gnu: wget2: Add more support libraries.
    
    * gnu/packages/wget.scm (wget2)[inputs]: Add brotli, nghttp2:lib, xz,
    zstd:lib. Update TODO comment.
    [arguments]: Adjust configure-flags to add support for bzip2, lzma
    compression.
---
 gnu/packages/wget.scm | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm
index 60f93df24c..6c6f7d3382 100644
--- a/gnu/packages/wget.scm
+++ b/gnu/packages/wget.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
 ;;; Copyright © 2014, 2015, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
-;;; Copyright © 2016, 2017, 2019-2022 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2017, 2019-2023 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
 ;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
@@ -152,16 +152,22 @@ online pastebin services.")
                         (("test-gpg-valid\\$\\(EXEEXT)") "")
                         (("test-gpg-styles\\$\\(EXEEXT)") "")))))
        #:configure-flags
-       '("--enable-static=no")))
-    (inputs (list bzip2
+       '("--enable-static=no"
+         "--with-bzip2=yes"
+         "--with-lzma=yes")))
+    (inputs (list brotli
+                  bzip2
                   gnutls/dane
                   gpgme
                   libidn2
                   libmicrohttpd
                   libpsl
+                  `(,nghttp2 "lib")
                   pcre2
-                  zlib))
-    ;; TODO: Add libbrotlidec, libnghttp2.
+                  xz
+                  zlib
+                  `(,zstd "lib")))
+    ;; TODO: Add libhsts.
     (native-inputs (list pkg-config))
     (home-page "https://gitlab.com/gnuwget/wget2";)
     (synopsis "Successor of GNU Wget")



reply via email to

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