mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: xorg: Add xeyes (for testing purposes).
* gnu/packages/xorg.scm (xeyes): New variable.
This commit is contained in:
parent
08dccdfd12
commit
e45a608245
1 changed files with 27 additions and 0 deletions
|
@ -43,6 +43,33 @@ (define-module (gnu packages xorg)
|
||||||
|
|
||||||
;; packages outside the x.org system proper
|
;; packages outside the x.org system proper
|
||||||
|
|
||||||
|
(define-public xeyes
|
||||||
|
(package
|
||||||
|
(name "xeyes")
|
||||||
|
(version "1.0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://xeyes.sourcearchive.com/downloads/1.0.1/xeyes_"
|
||||||
|
version
|
||||||
|
".orig.tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"04c3md570j67g55h3bix1qbngcslnq91skli51k3g1avki88zkm9"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("libx11" ,libx11)
|
||||||
|
("libxext" ,libxext)
|
||||||
|
("libxmu" ,libxmu)
|
||||||
|
("libxt" ,libxt)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(home-page "http://xeyes.sourcearchive.com/")
|
||||||
|
(synopsis "")
|
||||||
|
(description "")
|
||||||
|
(license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
(define-public pixman
|
(define-public pixman
|
||||||
(package
|
(package
|
||||||
(name "pixman")
|
(name "pixman")
|
||||||
|
|
Loading…
Reference in a new issue