mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add the X color name database file.
* gnu/packages/xorg.scm (xorg-rgb): New variable.
This commit is contained in:
parent
0158ca7fdd
commit
5fdd142072
1 changed files with 24 additions and 1 deletions
|
@ -4281,7 +4281,30 @@ (define-public xwud
|
|||
formatted dump file, such as produced by xwd.")
|
||||
(license license:x11)))
|
||||
|
||||
|
||||
(define-public xorg-rgb
|
||||
(package
|
||||
(name "xorg-rgb")
|
||||
(version "1.0.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://xorg/individual/app/rgb-"
|
||||
version
|
||||
".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"1c76zcjs39ljil6f6jpx1x17c8fnvwazz7zvl3vbjfcrlmm7rjmv"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("xproto" ,xproto)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "http://www.x.org/wiki/")
|
||||
(synopsis "X color name database")
|
||||
(description
|
||||
"This package provides the X color name database.")
|
||||
(license license:x11)))
|
||||
|
||||
;; packages of height 1 in the propagated-inputs tree
|
||||
|
||||
|
|
Loading…
Reference in a new issue