From fb7bdb43ef78b4a7af95c94ffb24544df362b5f2 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Thu, 30 Oct 2014 10:31:46 -0500 Subject: gnu: wget: Upgrade to 1.16. * gnu/packages/wget.scm (wget)[source]: Upgrade to 1.16. [inputs]: Add libidn. [native-inputs]: Add python, perl-http-daemon, and perl-io-socket-ssl. --- gnu/packages/wget.scm | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'gnu/packages/wget.scm') diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm index fb5fbf6343..674cc07780 100644 --- a/gnu/packages/wget.scm +++ b/gnu/packages/wget.scm @@ -20,7 +20,10 @@ (define-module (gnu packages wget) #:use-module (guix licenses) #:use-module (gnu packages gnutls) + #:use-module (gnu packages libidn) + #:use-module (gnu packages python) #:use-module (gnu packages perl) + #:use-module (gnu packages web) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) @@ -28,7 +31,7 @@ (define-public wget (package (name "wget") - (version "1.15") + (version "1.16") (source (origin (method url-fetch) @@ -36,12 +39,17 @@ version ".tar.xz")) (sha256 (base32 - "1yw0sk4mrs7bvga3c79rkbhxivmw8cs3b5wq3cglp1f9ai1mz2ni")))) + "1rxhr3jmgbwryzl51di4avqxw9m9j1z2aak8q1npns0p184xsqcj")))) (build-system gnu-build-system) + ;; TODO: Add libpsl to inputs (inputs - `(("gnutls" ,gnutls))) + `(("gnutls" ,gnutls) + ("libidn" ,libidn))) (native-inputs - `(("perl" ,perl))) + `(("perl" ,perl) + ("python" ,python) ;for testenv suite + ("perl-http-daemon" ,perl-http-daemon) + ("perl-io-socket-ssl" ,perl-io-socket-ssl))) (home-page "http://www.gnu.org/software/wget/") (synopsis "Non-interactive command-line utility for downloading files") (description -- cgit v1.2.3