diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-29 04:30:10 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-29 04:07:43 +0100 |
commit | a01aea7d6614d31a1aca2d1acc127f3b2f8d37de (patch) | |
tree | 48ac6a29f13b87a75abd0dc8a0b54d7a40ff57cc | |
parent | ed9bcf50d369c93d065f1ecff1ae822179545d73 (diff) |
gnu: hyperrogue: Don't use NAME in source URI.
* gnu/packages/games.scm (hyperrogue)[source]: Hard-code NAME.
-rw-r--r-- | gnu/packages/games.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index e64cdd75ff..ddf88f384b 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3729,8 +3729,8 @@ throwing people around in pseudo-randomly generated buildings.") (source (origin (method url-fetch) (uri (string-append - "https://www.roguetemple.com/z/hyper/" - name (string-join (string-split version #\.) "") + "https://www.roguetemple.com/z/hyper/hyperrogue" + (string-join (string-split version #\.) "") "-src.tgz")) (sha256 (base32 |