From 0542905a2c5cb4f645399e19c2a4924dc757057e Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sat, 28 May 2022 22:19:56 +0300 Subject: gnu: wget2: Reindent package. * gnu/packages/wget.scm (wget2): Reindent package with 'guix style'. --- gnu/packages/wget.scm | 76 +++++++++++++++++++++++++-------------------------- 1 file changed, 37 insertions(+), 39 deletions(-) diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm index f5b7a5b91f..7c8c961dfb 100644 --- a/gnu/packages/wget.scm +++ b/gnu/packages/wget.scm @@ -134,42 +134,40 @@ online pastebin services.") (define-public wget2 (package - (name "wget2") - (version "2.0.1") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://gnu/wget/wget2-" version ".tar.gz")) - (sha256 - (base32 - "1caxhkwk08z3npzw8x2qhkmjc224cfw1aphvbv8bidbvd41zmdqb")))) - (build-system gnu-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'skip-network-tests - (lambda _ - (substitute* "tests/Makefile.in" - (("test-gpg-verify-no-file\\$\\(EXEEXT)") "") - (("test-gpg-valid\\$\\(EXEEXT)") "") - (("test-gpg-styles\\$\\(EXEEXT)") ""))))) - #:configure-flags '("--enable-static=no"))) - (inputs - (list bzip2 - gnutls/dane - gpgme - libidn2 - libmicrohttpd - libpsl - pcre2 - zlib)) - ;; TODO: Add libbrotlidec, libnghttp2. - (native-inputs - (list pkg-config)) - (home-page "https://gitlab.com/gnuwget/wget2") - (synopsis "Successor of GNU Wget") - (description "GNU Wget2 is the successor of GNU Wget, a file and recursive -website downloader. Designed and written from scratch it wraps around libwget, -that provides the basic functions needed by a web client.") - (properties '((ftp-directory . "/gnu/wget"))) - (license (list license:gpl3+ license:lgpl3+)))) + (name "wget2") + (version "2.0.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/wget/wget2-" version ".tar.gz")) + (sha256 + (base32 + "1caxhkwk08z3npzw8x2qhkmjc224cfw1aphvbv8bidbvd41zmdqb")))) + (build-system gnu-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'skip-network-tests + (lambda _ + (substitute* "tests/Makefile.in" + (("test-gpg-verify-no-file\\$\\(EXEEXT)") "") + (("test-gpg-valid\\$\\(EXEEXT)") "") + (("test-gpg-styles\\$\\(EXEEXT)") ""))))) + #:configure-flags + '("--enable-static=no"))) + (inputs (list bzip2 + gnutls/dane + gpgme + libidn2 + libmicrohttpd + libpsl + pcre2 + zlib)) + ;; TODO: Add libbrotlidec, libnghttp2. + (native-inputs (list pkg-config)) + (home-page "https://gitlab.com/gnuwget/wget2") + (synopsis "Successor of GNU Wget") + (description + "GNU Wget2 is the successor of GNU Wget, a file and recursive website +downloader. Designed and written from scratch it wraps around libwget, that +provides the basic functions needed by a web client.") + (properties '((ftp-directory . "/gnu/wget"))) + (license (list license:gpl3+ license:lgpl3+)))) -- cgit v1.2.3