mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add xfontsel.
* gnu/packages/xorg.scm (xfontsel): New variable.
This commit is contained in:
parent
1925a87926
commit
f225ae7544
1 changed files with 46 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
|||
;;; Copyright © 2015 Cyrill Schenkel <cyrill.schenkel@gmail.com>
|
||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
||||
;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -3870,6 +3871,51 @@ (define-public xlsfonts
|
|||
protocol.")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public xfontsel
|
||||
(package
|
||||
(name "xfontsel")
|
||||
(version "1.0.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://xorg/individual/app/xfontsel-"
|
||||
version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"1grir464hy52a71r3mpm9mzvkf7nwr3vk0b1vc27pd3gp588a38p"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; By default, it tries to install XFontSel file in
|
||||
;; "/gnu/store/<libxt>/share/X11/app-defaults": it defines this
|
||||
;; directory from 'libxt' (using 'pkg-config'). To put this file
|
||||
;; inside output dir and to use it properly, we need to configure
|
||||
;; --with-appdefaultdir and to wrap 'xfontsel' binary.
|
||||
(let ((app-defaults-dir "/share/X11/app-defaults"))
|
||||
`(#:configure-flags
|
||||
(list (string-append "--with-appdefaultdir="
|
||||
%output ,app-defaults-dir))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'wrap-xfontsel
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(wrap-program (string-append out "/bin/xfontsel")
|
||||
`("XAPPLRESDIR" =
|
||||
(,(string-append out ,app-defaults-dir)))))))))))
|
||||
(inputs
|
||||
`(("libx11" ,libx11)
|
||||
("libxaw" ,libxaw)
|
||||
("libxmu" ,libxmu)
|
||||
("libxt" ,libxt)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "https://www.x.org/wiki/")
|
||||
(synopsis "Browse and select X font names")
|
||||
(description
|
||||
"XFontSel provides a simple way to display the X11 core protocol fonts
|
||||
known to your X server, examine samples of each, and retrieve the X Logical
|
||||
Font Description (XLFD) full name for a font.")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public xmodmap
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue