diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-11 22:24:36 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-11 22:56:04 +0200 |
commit | 6f2f7bc88aa093f87874fcfaa27366074978d9ee (patch) | |
tree | 4ac0da8c635d44fae8e582fd9a339447553c1d98 /gnu/packages | |
parent | 5ca1900ba5401ee1ae207491a305da54f525229c (diff) | |
download | guix-6f2f7bc88aa093f87874fcfaa27366074978d9ee.tar.gz guix-6f2f7bc88aa093f87874fcfaa27366074978d9ee.zip |
gnu: recode: Don't use NAME in source URI.
* gnu/packages/textutils.scm (recode)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/textutils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index c331940592..9ce01e66ea 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -94,7 +94,7 @@ to DOS format and vice versa.") (origin (method url-fetch) (uri (string-append "https://github.com/rrthomas/recode/releases/" - "download/v" version "/" name "-" version ".tar.gz")) + "download/v" version "/recode-" version ".tar.gz")) (sha256 (base32 "1sl99dfx2b76paq86wv3a0lcy66f1hylf6iy04rzwxj7ccwpsk30")) (modules '((guix build utils))) |