packages: toys: Add wayneko
parent
65909e3464
commit
50e999c21f
|
@ -0,0 +1,43 @@
|
|||
(define-module (radix packages toys)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages xdisorg)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module ((guix licenses) #:prefix license:))
|
||||
|
||||
(define-public wayneko
|
||||
(package
|
||||
(name "wayneko")
|
||||
(version "unknown")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://git.sr.ht/~leon_plickat/wayneko")
|
||||
(commit "ab5d2cb726cb7f677648c61862e37761e27c6b1a")))
|
||||
(sha256
|
||||
(base32 "13z4q4nj26fa14x5h8wx43jzxmz292pg3rw0m86imdjhnpp7rwp4"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:make-flags
|
||||
#~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "DESTDIR=" (assoc-ref %outputs "out")))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(delete 'check))))
|
||||
(inputs
|
||||
(list wayland
|
||||
pkg-config
|
||||
pixman))
|
||||
(home-page "https://git.sr.ht/~leon_plickat/wayneko")
|
||||
(synopsis "The cute oneko cat chasing your mouse pointer, but now on
|
||||
wayland.")
|
||||
(description "The cute oneko cat chasing your mouse pointer, but now on
|
||||
wayland.")
|
||||
(license license:gpl3)))
|
Loading…
Reference in New Issue