From patchwork Thu Oct 19 15:38:18 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Bruno Victal X-Patchwork-Id: 55034 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 0DBF227BBEA; Thu, 19 Oct 2023 16:39:57 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, SPF_HELO_PASS autolearn=ham autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 1E0F327BBE2 for ; Thu, 19 Oct 2023 16:39:56 +0100 (BST) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qtV7b-0001AT-GO; Thu, 19 Oct 2023 11:39:39 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qtV7X-0001A5-PO for guix-patches@gnu.org; Thu, 19 Oct 2023 11:39:35 -0400 Received: from debbugs.gnu.org ([2001:470:142:5::43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1qtV7X-0001Ie-0C for guix-patches@gnu.org; Thu, 19 Oct 2023 11:39:35 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1qtV7x-0005nJ-KJ for guix-patches@gnu.org; Thu, 19 Oct 2023 11:40:01 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#66500] [PATCH core-updates v2 1/3] build: copy-build-system: Allow specifying different output labels. Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 19 Oct 2023 15:40:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 66500 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 66500@debbugs.gnu.org Cc: Bruno Victal Received: via spool by 66500-submit@debbugs.gnu.org id=B66500.169772994322191 (code B ref 66500); Thu, 19 Oct 2023 15:40:01 +0000 Received: (at 66500) by debbugs.gnu.org; 19 Oct 2023 15:39:03 +0000 Received: from localhost ([127.0.0.1]:37520 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qtV71-0005lq-0s for submit@debbugs.gnu.org; Thu, 19 Oct 2023 11:39:03 -0400 Received: from smtpm4.myservices.hosting ([185.26.105.235]:50406) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qtV6v-0005l2-Lp for 66500@debbugs.gnu.org; Thu, 19 Oct 2023 11:38:58 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpm4.myservices.hosting (Postfix) with ESMTP id 4B21F20C0F for <66500@debbugs.gnu.org>; Thu, 19 Oct 2023 17:38:30 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id AB39980092; Thu, 19 Oct 2023 17:38:26 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id yZ_avWB8pKeX; Thu, 19 Oct 2023 17:38:26 +0200 (CEST) Received: from guix-nuc.home.arpa (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 156D38005B; Thu, 19 Oct 2023 17:38:26 +0200 (CEST) From: Bruno Victal Date: Thu, 19 Oct 2023 16:38:18 +0100 Message-ID: <776246775170b3e26211c28d52dffadc4c076ffc.1697729341.git.mirai@makinata.eu> X-Mailer: git-send-email 2.41.0 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org X-getmail-retrieved-from-mailbox: Patches * guix/build/copy-build-system.scm: Introduce '#:output' parameter to specify which output label to use for a given rule. * doc/guix.texi (Build Systems): Document it. --- doc/guix.texi | 6 ++++++ guix/build/copy-build-system.scm | 18 +++++++++++++----- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 4afe1af6c0..4f6c4ce67a 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -9460,6 +9460,9 @@ Build Systems If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions. @end itemize +@item When a package has multiple outputs, the @code{#:output} argument +can be used to specify which output label the files should be installed +to. @end itemize In all cases, the paths relative to @var{source} are preserved within @var{target}. @@ -9476,6 +9479,9 @@ Build Systems @file{share/my-app/sub/file}. @item @code{("foo/sub" "share/my-app" #:include ("file"))}: Install @file{foo/sub/file} to @file{share/my-app/file}. +@item @code{("foo/doc" "share/my-app/doc" #:output "doc")}: Install +@file{"foo/doc"} to @file{"share/my-app/doc"} within the @code{"doc"} +output. @end itemize @end defvar diff --git a/guix/build/copy-build-system.scm b/guix/build/copy-build-system.scm index fb2d1db056..25d3f4c57a 100644 --- a/guix/build/copy-build-system.scm +++ b/guix/build/copy-build-system.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2019 Julien Lepiller ;;; Copyright © 2020 Pierre Neidhardt ;;; Copyright © 2021 Efraim Flashner +;;; Copyright © 2023 Bruno Victal ;;; ;;; This file is part of GNU Guix. ;;; @@ -40,9 +41,9 @@ (define* (install #:key install-plan outputs #:allow-other-keys) An install plan is a list of plans in the form: - (SOURCE TARGET [FILTERS]) + (SOURCE TARGET [FILTERS] [#:output OUTPUT]) -In the above, FILTERS are optional. +In the above, FILTERS and OUTPUT are optional. - When SOURCE matches a file or directory without trailing slash, install it to TARGET. @@ -63,6 +64,9 @@ (define* (install #:key install-plan outputs #:allow-other-keys) If both `#:include*` and `#:exclude*` are specified, the exclusion is done on the inclusion list. +- When a package has multiple outputs, the `#:output` argument can be used +to specify which output label the files should be installed to. + Examples: - `(\"foo/bar\" \"share/my-app/\")`: Install bar to \"share/my-app/bar\". @@ -72,7 +76,9 @@ (define* (install #:key install-plan outputs #:allow-other-keys) - `(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))`: Install only \"foo/sub/file\" to \"share/my-app/sub/file\". - `(\"foo/sub\" \"share/my-app\" #:include (\"file\"))`: Install \"foo/sub/file\" to -\"share/my-app/file\"." +\"share/my-app/file\". +- `(\"foo/doc\" \"share/my-app/doc\" #:output \"doc\")`: Install \"foo/doc\" to +\"share/my-app/doc\" within the \"doc\" output." (define (install-simple source target) "Install SOURCE to TARGET. TARGET must point to a store location. @@ -133,8 +139,10 @@ (define* (install #:key install-plan outputs #:allow-other-keys) (string-append target "/"))) file-list)))) - (define* (install source target #:key include exclude include-regexp exclude-regexp) - (let ((final-target (string-append (assoc-ref outputs "out") "/" target)) + (define* (install source target + #:key include exclude include-regexp exclude-regexp + (output "out")) + (let ((final-target (string-append (assoc-ref outputs output) "/" target)) (filters? (or include exclude include-regexp exclude-regexp))) (when (and (not (file-is-directory? source)) filters?) From patchwork Thu Oct 19 15:38:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Bruno Victal X-Patchwork-Id: 55033 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 8205027BBE9; Thu, 19 Oct 2023 16:38:43 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, SPF_HELO_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 806E227BBE2 for ; Thu, 19 Oct 2023 16:38:42 +0100 (BST) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qtV6b-0006Ip-Im; Thu, 19 Oct 2023 11:38:37 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qtV6a-0006Ep-B6 for guix-patches@gnu.org; Thu, 19 Oct 2023 11:38:36 -0400 Received: from debbugs.gnu.org ([2001:470:142:5::43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1qtV6Z-0000ig-K7 for guix-patches@gnu.org; Thu, 19 Oct 2023 11:38:36 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1qtV70-0005lY-69 for guix-patches@gnu.org; Thu, 19 Oct 2023 11:39:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#66500] [PATCH core-updates v2 2/3] gnu: docbook-dsssl: Refactor install-plan. Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 19 Oct 2023 15:39:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 66500 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 66500@debbugs.gnu.org Cc: Bruno Victal Received: via spool by 66500-submit@debbugs.gnu.org id=B66500.169772993922148 (code B ref 66500); Thu, 19 Oct 2023 15:39:02 +0000 Received: (at 66500) by debbugs.gnu.org; 19 Oct 2023 15:38:59 +0000 Received: from localhost ([127.0.0.1]:37516 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qtV6w-0005l5-IM for submit@debbugs.gnu.org; Thu, 19 Oct 2023 11:38:58 -0400 Received: from smtpm2.myservices.hosting ([185.26.105.233]:51054) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qtV6t-0005kr-FK for 66500@debbugs.gnu.org; Thu, 19 Oct 2023 11:38:56 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpm2.myservices.hosting (Postfix) with ESMTP id A9D2620DE5 for <66500@debbugs.gnu.org>; Thu, 19 Oct 2023 17:38:27 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 28B4A80097; Thu, 19 Oct 2023 17:38:27 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id P-XG95C0dMs6; Thu, 19 Oct 2023 17:38:26 +0200 (CEST) Received: from guix-nuc.home.arpa (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 900F180060; Thu, 19 Oct 2023 17:38:26 +0200 (CEST) From: Bruno Victal Date: Thu, 19 Oct 2023 16:38:19 +0100 Message-ID: <6f1ceb31701a17a39d64f9e37d37db5a1d2a9949.1697729341.git.mirai@makinata.eu> X-Mailer: git-send-email 2.41.0 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org X-getmail-retrieved-from-mailbox: Patches Replace custom phase with copy-build-system newly added #:output parameter. Additionally remove extra slashes from license URIs and obsolete inputs. * gnu/packages/docbook.scm (docbook-dsssl)[source]: Remove empty directories from source using a snippet. [arguments]<#:phases>: Relocate 'install-doc logic into … <#:install-plan>: … here. Remove obsolete exclusion rules. [native-inputs]: Remove bzip2 and tar since these are already available by default. [license]: Remove extraneous slash. (docbook-dsssl-doc)[license]: Remove extraneous slash. --- gnu/packages/docbook.scm | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm index f7dff53808..07cb06059a 100644 --- a/gnu/packages/docbook.scm +++ b/gnu/packages/docbook.scm @@ -513,31 +513,25 @@ (define-public docbook-dsssl name "-" version ".tar.bz2")) (sha256 (base32 - "1g72y2yyc2k89kzs0lvrb9n7hjayw1hdskfpplpz97pf1c99wcig")))) + "1g72y2yyc2k89kzs0lvrb9n7hjayw1hdskfpplpz97pf1c99wcig")) + (snippet + #~(begin + ;; Remove empty directories. + (rmdir "doc") + (rmdir "docsrc"))))) (build-system copy-build-system) (outputs '("out" "doc")) (arguments (list #:install-plan - #~`(("./" "sgml/dtd/docbook/" - #:exclude ("doc" "docsrc"))) - #:phases - #~(modify-phases %standard-phases - ;; The doc output contains 1.4 MiB of HTML documentation. - (add-after 'install 'install-doc - (lambda* (#:key inputs #:allow-other-keys) - (mkdir-p (string-append #$output:doc "/share/doc")) - (symlink (assoc-ref inputs "docbook-dsssl-doc") - (format #f "~a/share/doc/~a-~a" - #$output:doc #$name #$version))))))) + #~`(("./" "sgml/dtd/docbook/") + (#$(this-package-input "docbook-dsssl-doc") "./" #:output "doc")))) (inputs (list docbook-dsssl-doc)) - (native-inputs - (list bzip2 tar)) (home-page "https://docbook.org/") (synopsis "DSSSL style sheets for DocBook") (description "This package provides DSSSL style sheets for DocBook.") - (license (license:non-copyleft "file://README")))) + (license (license:non-copyleft "file:/README")))) ;;; Private variable, used as the 'doc' output of the docbook-dsssl package. (define docbook-dsssl-doc @@ -560,7 +554,7 @@ (define docbook-dsssl-doc (home-page "https://docbook.org/") (synopsis "DocBook DSSSL style sheets documentation") (description "Documentation for the DocBook DSSSL style sheets.") - (license (license:non-copyleft "file://doc/LEGALNOTICE.htm")))) + (license (license:non-copyleft "file:/doc/LEGALNOTICE.htm")))) (define-public docbook-sgml-4.2 (package From patchwork Thu Oct 19 15:38:20 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruno Victal X-Patchwork-Id: 55037 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 11E8E27BBEA; Thu, 19 Oct 2023 16:46:59 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, SPF_HELO_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 8EC2E27BBE2 for ; Thu, 19 Oct 2023 16:46:58 +0100 (BST) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qtVEM-000781-D5; Thu, 19 Oct 2023 11:46:38 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qtVEK-00076c-GG for guix-patches@gnu.org; Thu, 19 Oct 2023 11:46:36 -0400 Received: from debbugs.gnu.org ([2001:470:142:5::43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1qtVEK-0007Xa-82 for guix-patches@gnu.org; Thu, 19 Oct 2023 11:46:36 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1qtVEk-00060h-SA for guix-patches@gnu.org; Thu, 19 Oct 2023 11:47:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#66500] [PATCH core-updates v2 3/3] gnu: docbook-dsssl: Fix script installation path. Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 19 Oct 2023 15:47:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 66500 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 66500@debbugs.gnu.org Cc: Bruno Victal Received: via spool by 66500-submit@debbugs.gnu.org id=B66500.169773041623074 (code B ref 66500); Thu, 19 Oct 2023 15:47:02 +0000 Received: (at 66500) by debbugs.gnu.org; 19 Oct 2023 15:46:56 +0000 Received: from localhost ([127.0.0.1]:37554 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qtVEd-000601-Ux for submit@debbugs.gnu.org; Thu, 19 Oct 2023 11:46:56 -0400 Received: from smtpm2.myservices.hosting ([185.26.105.233]:52578) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qtVEb-0005zg-HL for 66500@debbugs.gnu.org; Thu, 19 Oct 2023 11:46:54 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpm2.myservices.hosting (Postfix) with ESMTP id CC6A520EA3 for <66500@debbugs.gnu.org>; Thu, 19 Oct 2023 17:46:25 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 996DA80060; Thu, 19 Oct 2023 17:38:27 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 79CKE0Go3AtX; Thu, 19 Oct 2023 17:38:27 +0200 (CEST) Received: from guix-nuc.home.arpa (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 1435E80095; Thu, 19 Oct 2023 17:38:27 +0200 (CEST) From: Bruno Victal Date: Thu, 19 Oct 2023 16:38:20 +0100 Message-ID: X-Mailer: git-send-email 2.41.0 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org X-getmail-retrieved-from-mailbox: Patches * gnu/packages/docbook.scm (docbook-dsssl)[source]: Fix script permission. [arguments]<#:install-plan>: Install script and manpage correctly. [inputs]: Add perl. --- gnu/packages/docbook.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm index 07cb06059a..9445c86157 100644 --- a/gnu/packages/docbook.scm +++ b/gnu/packages/docbook.scm @@ -516,6 +516,7 @@ (define-public docbook-dsssl "1g72y2yyc2k89kzs0lvrb9n7hjayw1hdskfpplpz97pf1c99wcig")) (snippet #~(begin + (chmod "bin/collateindex.pl" #o755) ;; Remove empty directories. (rmdir "doc") (rmdir "docsrc"))))) @@ -524,10 +525,12 @@ (define-public docbook-dsssl (arguments (list #:install-plan - #~`(("./" "sgml/dtd/docbook/") + #~`(("./" "sgml/dtd/docbook/" #:exclude ("bin")) + ("bin/collateindex.pl" "bin/") + ("bin/collateindex.pl.1" "share/man/man1/") (#$(this-package-input "docbook-dsssl-doc") "./" #:output "doc")))) (inputs - (list docbook-dsssl-doc)) + (list perl docbook-dsssl-doc)) (home-page "https://docbook.org/") (synopsis "DSSSL style sheets for DocBook") (description "This package provides DSSSL style sheets for DocBook.")