mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add joycond.
* gnu/packages/games.scm (joycond): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
f45f482e9b
commit
f44d7f68e6
1 changed files with 38 additions and 0 deletions
|
@ -1490,6 +1490,44 @@ (define-public golly
|
|||
@end enumerate")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public joycond
|
||||
(let ((commit "f9a66914622514c13997c2bf7ec20fa98e9dfc1d")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "joycond")
|
||||
(version (git-version "0.1.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/DanielOgorchock/joycond")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"07z86yp27vxc0b44jgvf1vpa69rh3wdvd1xbzcsrj3f32743pv5a"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ;no test suite
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-bin-location
|
||||
(lambda* _
|
||||
(substitute* "CMakeLists.txt"
|
||||
(("/lib/udev/rules.d") (string-append %output "/lib/udev/rules.d"))
|
||||
(("/etc/systemd/system") (string-append %output "/etc/systemd/system"))
|
||||
(("/etc/modules-load.d") (string-append %output "/etc/modules-load.d"))
|
||||
(("/usr/bin") (string-append %output "/bin"))))))))
|
||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("eudev" ,eudev)
|
||||
("libevdev" ,libevdev)))
|
||||
(home-page "https://github.com/DanielOgorchock/joycond")
|
||||
(synopsis "Joy-Con controller daemon")
|
||||
(description "This package provides a userspace daemon for the Nintendo
|
||||
Joy-Con controllers.")
|
||||
(license license:gpl3))))
|
||||
|
||||
(define-public julius
|
||||
(package
|
||||
(name "julius")
|
||||
|
|
Loading…
Reference in a new issue