diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-10 15:32:51 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-10 15:32:51 +0200 |
commit | 7b38f045c04fe69001ff5c2f04486cc51a69ae82 (patch) | |
tree | bd839f1f635dc114c84d67c1db09b74f613ec315 /gnu/packages/ftp.scm | |
parent | 369d15674c8bb251c45a45466031a2da1640df9f (diff) | |
parent | 256d5c6e339d59287284bb83f35c594f13bd08f9 (diff) | |
download | patches-7b38f045c04fe69001ff5c2f04486cc51a69ae82.tar patches-7b38f045c04fe69001ff5c2f04486cc51a69ae82.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/ftp.scm')
-rw-r--r-- | gnu/packages/ftp.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm index f3211d9031..f687b9814d 100644 --- a/gnu/packages/ftp.scm +++ b/gnu/packages/ftp.scm @@ -46,7 +46,7 @@ (define-public lftp (package (name "lftp") - (version "4.8.3") + (version "4.8.4") (source (origin (method url-fetch) ;; See https://lftp.tech/get.html for mirrors. @@ -58,7 +58,7 @@ "ftp/lftp/lftp-" version ".tar.xz"))) (sha256 (base32 - "12y77jlfs4x4zvcah92mw2h2sb4j0bvbaxkh3wwsm8gs392ywyny")))) + "0qks22357xv9y6ripmf5j2n5svh8j5z0yniphfk89sjwkqg2gg2f")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -74,7 +74,8 @@ (lambda _ (substitute* "tests/Makefile" (("(ftp-cls-l|ftp-list|http-get)\\$\\(EXEEXT\\)") "") - (("lftp-https-get ") ""))))) + (("lftp-https-get ") "")) + #t))) #:configure-flags (list (string-append "--with-readline=" (assoc-ref %build-inputs "readline"))))) |