diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-21 01:12:28 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-21 17:26:46 +0100 |
commit | 1a05bce2759fd1f089188e62c14dba07d087c87d (patch) | |
tree | a4439af5dea061141e9425e7a32b0358bcd59070 | |
parent | fb6112e953fafbc7b011ea913c4c648b9f8fb57b (diff) | |
download | guix-1a05bce2759fd1f089188e62c14dba07d087c87d.tar guix-1a05bce2759fd1f089188e62c14dba07d087c87d.tar.gz |
gnu: wimlib: Don't use NAME in source URI.
* gnu/packages/backup.scm (wimlib)[source]: Hard-code NAME.
-rw-r--r-- | gnu/packages/backup.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index afc085fb37..3178a78e16 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -679,7 +679,7 @@ changes are stored.") (source (origin (method url-fetch) (uri (string-append "https://wimlib.net/downloads/" - name "-" version ".tar.gz")) + "wimlib-" version ".tar.gz")) (sha256 (base32 "02wpsxjlw9vysj6x6q7kmvbcdkpvdzw201mmj5x0q670mapjrnai")))) |