diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:48:36 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-11 05:26:42 +0200 |
commit | c4f0c8baa98f614198f52dc00d0233f4941fe69f (patch) | |
tree | 5c9e54496eda22a7ff1aae2c8f9c2d4054bcdf19 /gnu | |
parent | ef5ef8f55f3bf68982059ad5f03c74b3f56d2674 (diff) | |
download | patches-c4f0c8baa98f614198f52dc00d0233f4941fe69f.tar patches-c4f0c8baa98f614198f52dc00d0233f4941fe69f.tar.gz |
gnu: mupen64plus-rsp-hle: Don't use unstable tarball.
* gnu/packages/emulators.scm (mupen64plus-rsp-hle)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu')
-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 c28fc3885a..3c118cfdde 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -605,13 +605,13 @@ SDL input plugin.") (version "2.5") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/mupen64plus/mupen64plus-rsp-hle/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/mupen64plus/mupen64plus-rsp-hle.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "15h7mgz6xd2zjzm6l3f96sbs8kwr3xvbwzgikhnka79m6c69hsxv")))) + (base32 "0pi31qzjjp7aypdvvnz6ms18g09c4gqzxi6328zj8sji94b75gf0")))) (build-system gnu-build-system) (inputs `(("mupen64plus-core" ,mupen64plus-core))) |