diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-23 06:03:39 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-23 19:45:58 +0100 |
commit | 96b96ec65162575a124e52459e36811e90bba649 (patch) | |
tree | c4ce58cda9d455fb68bd983212e54416a136555b /gnu/packages | |
parent | 0ccd3c98a62281f4a1e02ab99ba9a065a02ee638 (diff) | |
download | patches-96b96ec65162575a124e52459e36811e90bba649.tar patches-96b96ec65162575a124e52459e36811e90bba649.tar.gz |
gnu: dos2unix: Don't use NAME in source URI.
* gnu/packages/textutils.scm (dos2unix)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/textutils.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index cf90779978..6902333808 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -67,8 +67,8 @@ (source (origin (method url-fetch) - (uri (string-append "https://waterlan.home.xs4all.nl/" name "/" - name "-" version ".tar.gz")) + (uri (string-append "https://waterlan.home.xs4all.nl/dos2unix/" + "dos2unix-" version ".tar.gz")) (sha256 (base32 "12h4c61g376bhq03y5g2xszkrkrj5hwd928rly3xsp6rvfmnbixs")))) (build-system gnu-build-system) |