diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-02 18:28:05 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-03 01:52:45 +0100 |
commit | 3f80d7ced28de98e1406d3814dafc8b84c92e48c (patch) | |
tree | 6c90b4f728cfc7340dabb23d8bd435915c498051 /gnu/packages/networking.scm | |
parent | a36eba4716c59d89357b562103a0876adf814033 (diff) | |
download | guix-3f80d7ced28de98e1406d3814dafc8b84c92e48c.tar guix-3f80d7ced28de98e1406d3814dafc8b84c92e48c.tar.gz |
gnu: mtr: Don't use NAME in source URI.
* gnu/packages/networking.scm (mtr)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages/networking.scm')
-rw-r--r-- | gnu/packages/networking.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index fdc16b2a92..09f604a644 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1951,8 +1951,8 @@ can be whipped up with little effort.") (source (origin (method url-fetch) - (uri (string-append "ftp://ftp.bitwizard.nl/" name "/" - name "-" version ".tar.gz")) + (uri (string-append "ftp://ftp.bitwizard.nl/mtr/" + "mtr-" version ".tar.gz")) (sha256 (base32 "03gid8g4r6a9r40855s4345xm1bylj2kfqkicjwxpmvvccyng712")))) (build-system gnu-build-system) |