gnu: Add libxaw3d.

* gnu/packages/xorg.scm (libxaw3d): New variable.
master
Andreas Enge 2013-05-05 10:45:55 +02:00
parent 3a08a41188
commit dcc9053aff
1 changed files with 31 additions and 1 deletions

View File

@ -177,7 +177,7 @@ tracking.")
;; packages without propagated input
;; packages without propagated input
;; (rationale for this separation: The packages in PROPAGATED_INPUTS need to
;; be defined first, the split makes book-keeping easier.)
@ -4846,3 +4846,33 @@ emulation to complete hardware acceleration for modern GPUs.")
(synopsis "xorg implementation of the X Window System")
(description "X.org provides an implementation of the X Window System")
(license license:x11)))
;; package outside the x.org system proper of height 5
(define-public libxaw3d
(package
(name "libxaw3d")
(version "1.6.2")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://xorg/individual/lib/libXaw3d-"
version
".tar.bz2"))
(sha256
(base32
"0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp"))))
(build-system gnu-build-system)
(propagated-inputs
`(("libxext" ,libxext)
("libxmu" ,libxmu)
("libxt" ,libxt)))
(inputs
`(("libx11" ,libx11)
("pkg-config" ,pkg-config)))
(home-page "http://www.x.org/wiki/")
(synopsis "xorg implementation of the X Window System")
(description "X.org provides an implementation of the X Window System")
(license license:x11)))