diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-09 12:22:14 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-09 12:22:14 +0200 |
commit | 94ca5b4357af8f8921f0cb0873a7cf316f13aa69 (patch) | |
tree | 6ef30120737f26f298f7f17d86597b0b729517e0 /gnu/packages/xorg.scm | |
parent | 6750c114e3e988249f4069d0180316c6d0192350 (diff) | |
parent | db61bdd7f52270a35bd0a3a88650d98276dab20b (diff) | |
download | guix-94ca5b4357af8f8921f0cb0873a7cf316f13aa69.tar.gz guix-94ca5b4357af8f8921f0cb0873a7cf316f13aa69.zip |
Merge branch 'master' into emacs-team
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index eaf90a79df..08cbd8d757 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -469,6 +469,26 @@ Resources file.") (description "Xorg font encoding files.") (license license:public-domain))) +(define-public fonttosfnt + (package + (name "fonttosfnt") + (version "1.2.2") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://xorg/individual/app/" + "fonttosfnt-" version ".tar.gz")) + (sha256 + (base32 "0j66hv6z2bh4q88kbhncakyfpxqs71jmwn8pqw4gyfpn71y324c1")))) + (build-system gnu-build-system) + (native-inputs (list pkg-config)) + (inputs (list freetype libfontenc xorgproto)) + (home-page "https://www.x.org/wiki/") + (synopsis "Wrap a bitmap font in a sfnt (ttf or otb) wrapper") + (description "@command{fonttosfnt} wraps a set of bdf or pcf bitmap fonts +in a sfnt (TrueType or OpenType) wrapper.") + (license license:expat))) + (define-public font-adobe100dpi (package (name "font-adobe100dpi") @@ -5287,6 +5307,7 @@ Wayland.") (package (name "libx11") (version "1.8.1") + (replacement libx11-fixed) ;security fixes (source (origin (method url-fetch) @@ -5316,6 +5337,19 @@ Wayland.") (description "Xorg Core X11 protocol client library.") (license license:x11))) +(define-public libx11-fixed + (package + (inherit libx11) + (version "1.8.6") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://xorg/individual/lib/libX11-" + version ".tar.xz")) + (sha256 + (base32 + "1jawl8zp1h7hdmxx1sc6kmxkki187d9yixr2l03ai6wqqry5nlsr")))))) + ;; packages of height 5 in the propagated-inputs tree (define-public libxcursor |