gnu: nestopia-ue: Don't use unstable tarball.

* gnu/packages/emulators.scm (nestopia-ue)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:50:32 +02:00
parent 225157a0b2
commit 3e461b71bc
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 15 additions and 15 deletions

View File

@ -1005,21 +1005,21 @@ towards a working Mupen64Plus for casual users.")
(package (package
(name "nestopia-ue") (name "nestopia-ue")
(version "1.48") (version "1.48")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://github.com/rdanbrook/nestopia/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/rdanbrook/nestopia.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"184y05z4k4a4m4022niy625kan0rklh8gcxyynxli1fss2sjjrpv")) (base32 "19c8vx5yxbysl0sszk5blfngwacshdgwbf44g1qaxvq8ywiyxmb4"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
'(begin '(begin
;; We don't need libretro for the GNU/Linux build. ;; We don't need libretro for the GNU/Linux build.
(delete-file-recursively "libretro") (delete-file-recursively "libretro")
#t)))) #t))))
(build-system cmake-build-system) (build-system cmake-build-system)
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))