[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emulation-station: Fix build.
From: |
guix-commits |
Subject: |
branch master updated: gnu: emulation-station: Fix build. |
Date: |
Sat, 15 Feb 2020 18:53:05 -0500 |
This is an automated email from the git hooks/post-receive script.
niedzejkob pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 4530fe8 gnu: emulation-station: Fix build.
4530fe8 is described below
commit 4530fe8ecca456fcc7226914502ad452c33ce27b
Author: Jakub Kądziołka <address@hidden>
AuthorDate: Sun Feb 16 00:51:56 2020 +0100
gnu: emulation-station: Fix build.
* gnu/packages/emulators.scm (emulation-station): Switch to an
unreleased git commit.
---
gnu/packages/emulators.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index cfc5039..b9c854c 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -274,19 +274,21 @@ older games.")
(license license:gpl2+)))
(define-public emulation-station
- (let ((commit "646bede3d9ec0acf0ae378415edac136774a66c5"))
+ ;; No release for a long time, new commits fix build issues
+ (let ((commit "9cc42adff67946175d2b7e25c6ae69cc374e98a0")
+ (revision "1"))
(package
(name "emulation-station")
- (version "2.0.1")
+ (version (git-version "2.0.1" revision commit))
(source (origin
(method git-fetch) ; no tarball available
(uri (git-reference
(url "https://github.com/Aloshi/EmulationStation.git")
(commit commit))) ; no version tag
- (file-name (string-append name "-" version "-checkout"))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0cm0sq2wri2l9cvab1l0g02za59q7klj0h3p028vr96n6njj4w9v"))))
+ "1cva0ns650v17lfn8in095zci6lc43d23f1x3mlzc41qfqa6mbd1"))))
(build-system cmake-build-system)
(arguments
'(#:tests? #f)) ; no tests
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emulation-station: Fix build.,
guix-commits <=