gnu: Add editres.
* gnu/packages/xorg.scm (editres): New variable.
This commit is contained in:
parent
9926875572
commit
f0ddc5e55b
|
@ -10,6 +10,7 @@
|
||||||
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
||||||
;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
|
;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
|
||||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||||
|
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -335,6 +336,44 @@ provided.")
|
||||||
"See 'dri3proto.h' in the distribution."))))
|
"See 'dri3proto.h' in the distribution."))))
|
||||||
|
|
||||||
|
|
||||||
|
(define-public editres
|
||||||
|
(package
|
||||||
|
(name "editres")
|
||||||
|
(version "1.0.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://xorg/individual/app/" name "-"
|
||||||
|
version
|
||||||
|
".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1w2d5hb5pw9ii2jlf4yjlp899402zfwc8hdkpdr3i1fy1cjd2riv"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags
|
||||||
|
(list (string-append "--with-appdefaultdir="
|
||||||
|
%output "/lib/X11/app-defaults"))))
|
||||||
|
(inputs
|
||||||
|
`(("libxaw" ,libxaw)
|
||||||
|
("libxmu" ,libxmu)
|
||||||
|
("libxt" ,libxt)))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(home-page "https://www.x.org/wiki/")
|
||||||
|
(synopsis "Tool to browse and edit X Toolkit resource specifications")
|
||||||
|
(description
|
||||||
|
"Editres is a tool that allows users and application developers to view
|
||||||
|
the full widget hierarchy of any X Toolkit application that speaks the Editres
|
||||||
|
protocol. In addition, editres will help the user construct resource
|
||||||
|
specifications, allow the user to apply the resource to the application and
|
||||||
|
view the results dynamically. Once the user is happy with a resource
|
||||||
|
specification editres will append the resource string to the user's X
|
||||||
|
Resources file.")
|
||||||
|
(license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
(define-public encodings
|
(define-public encodings
|
||||||
(package
|
(package
|
||||||
(name "encodings")
|
(name "encodings")
|
||||||
|
|
Loading…
Reference in New Issue