diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-03 03:18:32 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-03 05:06:47 +0100 |
commit | 46b39ce8351608c97e07328424f453dd22a87c4a (patch) | |
tree | c7a41545f7722125c951f9014bb59f4eb552ab1d /gnu/packages | |
parent | 848be51c887de9faf5b3bce81ba3a522d73e5f3e (diff) |
gnu: fish: Don't use NAME in source URI.
* gnu/packages/shells.scm (fish)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/shells.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index d28f834bdb..8fb941bdcd 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -101,7 +101,7 @@ direct descendant of NetBSD's Almquist Shell (@command{ash}).") (method url-fetch) (uri (string-append "https://github.com/fish-shell/fish-shell/" "releases/download/" version "/" - name "-" version ".tar.gz")) + "fish-" version ".tar.gz")) (sha256 (base32 "03j3jl9jzlnhq4p86zj8wqsh5sx45j1d1fvfa80ks1cfdg68qwhl")))) (build-system gnu-build-system) |