wget: Upgrade to 1.15.
* gnu/packages/wget.scm (wget): Upgrade to 1.15. Remove Gettext from 'inputs'. Move Perl to 'native-inputs'.
This commit is contained in:
		
							parent
							
								
									93e48d19c7
								
							
						
					
					
						commit
						b5d4a81133
					
				
					 1 changed files with 6 additions and 6 deletions
				
			
		|  | @ -1,5 +1,6 @@ | ||||||
| ;;; GNU Guix --- Functional package management for GNU | ;;; GNU Guix --- Functional package management for GNU | ||||||
| ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org> | ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org> | ||||||
|  | ;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org> | ||||||
| ;;; | ;;; | ||||||
| ;;; This file is part of GNU Guix. | ;;; This file is part of GNU Guix. | ||||||
| ;;; | ;;; | ||||||
|  | @ -18,7 +19,6 @@ | ||||||
| 
 | 
 | ||||||
| (define-module (gnu packages wget) | (define-module (gnu packages wget) | ||||||
|   #:use-module (guix licenses) |   #:use-module (guix licenses) | ||||||
|   #:use-module (gnu packages gettext) |  | ||||||
|   #:use-module (gnu packages gnutls) |   #:use-module (gnu packages gnutls) | ||||||
|   #:use-module (gnu packages perl) |   #:use-module (gnu packages perl) | ||||||
|   #:use-module (guix packages) |   #:use-module (guix packages) | ||||||
|  | @ -28,7 +28,7 @@ | ||||||
| (define-public wget | (define-public wget | ||||||
|   (package |   (package | ||||||
|     (name "wget") |     (name "wget") | ||||||
|     (version "1.14") |     (version "1.15") | ||||||
|     (source |     (source | ||||||
|      (origin |      (origin | ||||||
|       (method url-fetch) |       (method url-fetch) | ||||||
|  | @ -36,12 +36,12 @@ | ||||||
|                           version ".tar.xz")) |                           version ".tar.xz")) | ||||||
|       (sha256 |       (sha256 | ||||||
|        (base32 |        (base32 | ||||||
|         "0yqllj3nv9p3vqbdm6j4nvpjcwf1y19rq8sd966nrbd2qvvxfq8p")))) |         "1yw0sk4mrs7bvga3c79rkbhxivmw8cs3b5wq3cglp1f9ai1mz2ni")))) | ||||||
|     (build-system gnu-build-system) |     (build-system gnu-build-system) | ||||||
|     (inputs |     (inputs | ||||||
|      `(("gnutls" ,gnutls) |      `(("gnutls" ,gnutls))) | ||||||
|        ("perl" ,perl) |     (native-inputs | ||||||
|        ("gettext" ,gnu-gettext))) |      `(("perl" ,perl))) | ||||||
|     (home-page "http://www.gnu.org/software/wget/") |     (home-page "http://www.gnu.org/software/wget/") | ||||||
|     (synopsis "Non-interactive command-line utility for downloading files") |     (synopsis "Non-interactive command-line utility for downloading files") | ||||||
|     (description |     (description | ||||||
|  |  | ||||||
		Reference in a new issue