diff mbox series

[bug#54868] gnu: xkeyboard-config: Build manpages.

Message ID 3TCSNF5FB3WRY.2G06RQDUFHVX7@"@WILSONB.COM
State Accepted
Headers show
Series [bug#54868] gnu: xkeyboard-config: Build manpages. | expand

Checks

Context Check Description
cbaines/comparison success View comparision
cbaines/git branch success View Git branch
cbaines/applying patch fail View Laminar job
cbaines/issue success View issue

Commit Message

B. Wilson April 12, 2022, 12:56 a.m. UTC
Hey Guix,

I noticed that xkeyboard-config(7) isn't supplied with the xkeyboard-config
packages. Upstream's build system will make these as long as xsltproc exists on
PATH, so this patch essentially just includes libxslt for that.

In addition, I also went ahead and updated to the new inputs style.

LMTWYT.

-B

Comments

Mathieu Othacehe May 9, 2022, 7:56 a.m. UTC | #1
Hello,

Looks like this has already been pushed to core-updates:
e25ff31663f82132e708e790e4f83edce717e53a.

Thanks,

Mathieu
diff mbox series

Patch

From 76c60782ae22c305da71f76202f889264449f7fe Mon Sep 17 00:00:00 2001
From: "B. Wilson" <elaexuotee@wilsonb.com>
Date: Tue, 12 Apr 2022 09:47:43 +0900
Subject: [PATCH] gnu: xkeyboard-config: Build manpages.
To: guix-patches@gnu.org

* gnu/packages/xorg.scm (xkeyboard-config): Include libxslt in native-inptus.
---
 gnu/packages/xorg.scm | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 75a7bbd01c..0dcc1d5a09 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -33,6 +33,7 @@ 
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
 ;;; Copyright © 2021 qblade <qblade@protonmail.com>
 ;;; Copyright © 2021 Lu Hui <luhux76@gmail.com>
+;;; Copyright © 2022 B. Wilson <elaexuotee@wilsonb.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3994,10 +3995,7 @@  (define-public xkeyboard-config
     (inputs
       (list libx11 xkbcomp-intermediate))
     (native-inputs
-      `(("gettext" ,gettext-minimal)
-        ("perl" ,perl)
-        ("pkg-config" ,pkg-config)
-        ("python" ,python)))
+      (list gettext-minimal libxslt perl pkg-config python))
     (home-page "https://www.x.org/wiki/")
     (synopsis "Xorg XKB configuration files")
     (description
-- 
2.35.1