diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-21 10:16:27 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-22 22:50:24 +0900 |
commit | 94023ae509ed957d21fb165ac97f5fa8ef443281 (patch) | |
tree | ba25bfcfa571b738d839dcd972a47c0eaa5c973d /gnu | |
parent | 88f095e88a51f6a02583de277ef0ab9e833525b0 (diff) | |
download | guix-94023ae509ed957d21fb165ac97f5fa8ef443281.tar.gz guix-94023ae509ed957d21fb165ac97f5fa8ef443281.zip |
gnu: joycond: Update to 0.1.0-2.5b590ec.
* gnu/packages/games.scm (joycond): Update to 0.1.0-2.5b590ec.
Change-Id: I86a258b6d2992e6b72b4bc4b33b4fdfb2c94e296
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/games.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index bb61900ace..64b6b0941a 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1763,8 +1763,12 @@ automata. The following features are available: (license license:gpl2+))) (define-public joycond - (let ((commit "f9a66914622514c13997c2bf7ec20fa98e9dfc1d") - (revision "1")) + ;; Important: Do *not* update to a newer commit until an issue causing a + ;; 100% CPU usage in the next commit + ;; cdec32865c6093bd4761326ea461aaa2fcf7d1b4 is resolved (see: + ;; https://github.com/DanielOgorchock/joycond/issues/153). + (let ((commit "5b590ecc9bca181d8bc21377e752126bc9180319") + (revision "2")) (package (name "joycond") (version (git-version "0.1.0" revision commit)) @@ -1776,7 +1780,7 @@ automata. The following features are available: (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "07z86yp27vxc0b44jgvf1vpa69rh3wdvd1xbzcsrj3f32743pv5a")))) + (base32 "18aig7x5n8hh8ffw0qk2hx2b93xrs4jp652vp8cxklw9xyy33f15")))) (build-system cmake-build-system) (arguments (list #:tests? #f ;no test suite |