diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-12-23 10:10:55 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-08 23:51:13 +0100 |
commit | 7428d1693a281ee06e918310d95543da5349153e (patch) | |
tree | d7886253898c9e65ae71910be6c77ba4ab863405 /gnu/packages/abiword.scm | |
parent | 64430c87b6c6d3286fa25a0d4e00e29b60a5a54b (diff) | |
download | guix-7428d1693a281ee06e918310d95543da5349153e.tar.gz |
gnu: abiword: Don't use NAME in source URI.
* gnu/packages/abiword.scm (abiword)[source]: Hard-code name.
Diffstat (limited to 'gnu/packages/abiword.scm')
-rw-r--r-- | gnu/packages/abiword.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/abiword.scm b/gnu/packages/abiword.scm index 02f132f6f0..9d8c253a62 100644 --- a/gnu/packages/abiword.scm +++ b/gnu/packages/abiword.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2016, 2018 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> +;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -51,8 +52,8 @@ (origin (method url-fetch) (uri - (string-append "https://www.abisource.com/downloads/" name "/" version - "/source/" name "-" version ".tar.gz")) + (string-append "https://www.abisource.com/downloads/abiword/" version + "/source/abiword-" version ".tar.gz")) (sha256 (base32 "08imry821g81apdwym3gcs4nss0l9j5blqk31j5rv602zmcd9gxg")) (patches |