diff options
author | Tobias Geerinckx-Rice <[email protected]> | 2019-02-15 04:59:00 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <[email protected]> | 2019-02-15 05:41:18 +0100 |
commit | 786e0073c1a7f7ce585c2e4ced88e8072802bbf2 (patch) | |
tree | f5da476d3fe0a8c20d74e42c49e2dc8dc9baa94d /gnu/packages/ftp.scm | |
parent | 7d4cbd993d44d477d0fd6d7f308efe7f41fc0d97 (diff) |
gnu: libfilezilla: Don't use NAME in source URI.
* gnu/packages/ftp.scm (libfilezilla)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages/ftp.scm')
-rw-r--r-- | gnu/packages/ftp.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm index bc44d7537a..8cc5af66c4 100644 --- a/gnu/packages/ftp.scm +++ b/gnu/packages/ftp.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2014, 2015, 2018 Ludovic Courtès <[email protected]> ;;; Copyright © 2015 Andreas Enge <[email protected]> ;;; Copyright © 2015 Mark H Weaver <[email protected]> -;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <[email protected]> +;;; Copyright © 2016, 2017, 2018, 2019 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2017 Rene Saavedra <[email protected]> ;;; ;;; This file is part of GNU Guix. @@ -175,7 +175,7 @@ as required.") (origin (method url-fetch) (uri (string-append "https://download.filezilla-project.org/" - name "/" name "-" version ".tar.bz2")) + "libfilezilla/libfilezilla-" version ".tar.bz2")) (sha256 (base32 "17zlhw5b1a7jzh50cbpy2is3sps5lnzch5yf9qm7mwrviw9c8j10")))) |