mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add libxaw3d.
* gnu/packages/xorg.scm (libxaw3d): New variable.
This commit is contained in:
parent
3a08a41188
commit
dcc9053aff
1 changed files with 31 additions and 1 deletions
|
@ -4846,3 +4846,33 @@ (define-public libxaw
|
||||||
(synopsis "xorg implementation of the X Window System")
|
(synopsis "xorg implementation of the X Window System")
|
||||||
(description "X.org provides an implementation of the X Window System")
|
(description "X.org provides an implementation of the X Window System")
|
||||||
(license license:x11)))
|
(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)))
|
||||||
|
|
Loading…
Reference in a new issue