diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:48:52 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-11 05:26:42 +0200 |
commit | 2074c8bf131d4cc587259c35e79652c9cab03421 (patch) | |
tree | cbf0e00bbe220fde997be037af7a71d816f4ac4d | |
parent | 052650c8400022773af5129d1599de118e112b8e (diff) | |
download | patches-2074c8bf131d4cc587259c35e79652c9cab03421.tar patches-2074c8bf131d4cc587259c35e79652c9cab03421.tar.gz |
gnu: mupen64plus-video-arachnoid: Don't use unstable tarball.
* gnu/packages/emulators.scm (mupen64plus-video-arachnoid)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/emulators.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 785ed6eeae..99ecb12173 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -689,13 +689,13 @@ Z64 RSP processor plugin.") (version "2.0.0") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/mupen64plus/mupen64plus-video-arachnoid/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/mupen64plus/mupen64plus-video-arachnoid.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "0jjwf144rihznm4lnqbhgigxw664v3v32wy94adaa6imk8z6gslh")))) + (base32 "1v9fqwpb6pawr8z5cm2ki7bqkks4iyr5c4jy4v5khj6h8zcv55gc")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) |