diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-17 19:28:24 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-17 19:37:44 +0100 |
commit | 91d42be7ef410bb3943481c352dfa0a3cc28882f (patch) | |
tree | 95b07194ed2398f8fdc3bc4aa1b5da826cbe863f | |
parent | 9e4da9f2aab57150ce1b85b657a9f478f6156a96 (diff) | |
download | guix-91d42be7ef410bb3943481c352dfa0a3cc28882f.tar.gz guix-91d42be7ef410bb3943481c352dfa0a3cc28882f.zip |
gnu: fbida: Don't use NAME in source URI.
* gnu/packages/pdf.scm (fbida)[source]: Hard-code NAME.
-rw-r--r-- | gnu/packages/pdf.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 8e69ab5c83..38a4516707 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -13,7 +13,7 @@ ;;; Copyright © 2017, 2018 Leo Famulari <leo@famulari.name> ;;; Copyright © 2017 Alex Vong <alexvong1995@gmail.com> ;;; Copyright © 2017, 2018 Rene Saavedra <pacoon@protonmail.com> -;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -835,7 +835,7 @@ the PDF pages.") (source (origin (method url-fetch) (uri (string-append "https://www.kraxel.org/releases/fbida/" - name "-" version ".tar.gz")) + "fbida-" version ".tar.gz")) (sha256 (base32 "0bw224vb7jh0lrqaf4jgxk48xglvxs674qcpj5y0axyfbh896cfk")))) |