diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-29 01:22:49 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-29 01:44:09 +0100 |
commit | 071782762a34a0714a66b935406ffa879b9836dc (patch) | |
tree | 0b10c52a7fede66047d7c3567417d3cd4f967d2c | |
parent | 00a82e838579177bb2edcf369875d783cac23bba (diff) | |
download | guix-071782762a34a0714a66b935406ffa879b9836dc.tar guix-071782762a34a0714a66b935406ffa879b9836dc.tar.gz |
gnu: fizmo: Don't use NAME in source URI.
* gnu/packages/games.scm (fizmo)[source]: Hard-code NAME.
-rw-r--r-- | gnu/packages/games.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 6e2f9c1091..5a40ae349a 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1980,7 +1980,7 @@ reference interpreter, using the Glk API.") (source (origin (method url-fetch) (uri (string-append "https://fizmo.spellbreaker.org/source/" - name "-" version ".tar.gz")) + "fizmo-" version ".tar.gz")) (sha256 (base32 "1amyc4n41jf08kxmdgkk30bzzx54miaxa97w28f417qwn8lrl98w")))) |