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