packages: wayneko: Use git-version for versioning

main
Luis Guilherme Coelho 2024-09-03 21:07:36 -03:00
parent 9f7cc992b2
commit dfc26a17c6
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
1 changed files with 31 additions and 29 deletions

View File

@ -10,34 +10,36 @@
#:use-module ((guix licenses) #:prefix license:))
(define-public wayneko
(package
(name "wayneko")
(version "unknown")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/look/wayneko")
(commit "cb3668e42562a5b022a02af099de7faf122c27bf")))
(sha256
(base32
"1vk7b4z4z6alksglw6jnp8rh5qz90h0sm77031iwwg8ha9kp1n9s"))))
(build-system gnu-build-system)
(arguments
(list #:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
(string-append "PREFIX=" #$output))
#:phases
#~(modify-phases %standard-phases
(delete 'configure)
(delete 'check))))
(inputs
(list wayland
pkg-config
pixman))
(home-page "https://codeberg.org/look/wayneko")
(synopsis "The cute oneko cat chasing your mouse pointer, but now on
(let ((commit "cb3668e42562a5b022a02af099de7faf122c27bf")
(revision "0"))
(package
(name "wayneko")
(version (git-version "0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/look/wayneko")
(commit "cb3668e42562a5b022a02af099de7faf122c27bf")))
(sha256
(base32
"1vk7b4z4z6alksglw6jnp8rh5qz90h0sm77031iwwg8ha9kp1n9s"))))
(build-system gnu-build-system)
(arguments
(list #:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
(string-append "PREFIX=" #$output))
#:phases
#~(modify-phases %standard-phases
(delete 'configure)
(delete 'check))))
(inputs
(list wayland
pkg-config
pixman))
(home-page "https://codeberg.org/look/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
(description "The cute oneko cat chasing your mouse pointer, but now on
wayland.")
(license license:gpl3)))
(license license:gpl3))))