From 07f436ce1301c9dc6344b3af03f8a159e35edbbd Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 16 Jul 2023 02:00:02 +0200 Subject: gnu: libnvme: Separate :doc files. Also fix the .rst files being dumped in the root of the output. * gnu/packages/linux.scm (libnvme)[outputs]: Add "doc". [arguments]: Install HTML and RST documentation there. --- gnu/packages/linux.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index cf67a63331..bfccd1afb7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5142,11 +5142,14 @@ Translation (@dfn{SAT}) are also supported.") (base32 "1wq8bw60l090z2kb717wyzk5wz1jrcn31ykdaa7k9pz9w79v0v67")) (file-name (git-file-name name version)))) (build-system meson-build-system) + (outputs (list "out" "doc")) ; docs are 80% of all output (arguments (list - #:configure-flags #~(list (format #f "-Dhtmldir=~a/share/doc/~a/html" - #$output #$name) - "-Ddocs-build=true" "-Ddocs=all"))) + #:configure-flags + #~(let ((doc (string-append #$output:doc "/share/doc/" #$name))) + (list (string-append "-Dhtmldir=" doc "/html") + (string-append "-Drstdir=" doc "/rst") + "-Ddocs-build=true" "-Ddocs=all")))) (native-inputs (list pkg-config perl python python-sphinx)) ;; libnvme.pc, libnvme-mi.pc lists these in Requires.private. (propagated-inputs (list dbus json-c openssl)) -- cgit v1.2.3 thod='get' action='/guix/log/gnu/packages.scm'>
path: root/gnu/packages.scm
AgeCommit message (Expand)Author
2020-01-17packages: Prevent inlining of 'find-best-packages-by-name'....Ludovic Courtès
2020-01-06Adjust module autoloads....Ludovic Courtès
2019-10-14packages: 'fold-available-packages' uses 'supported-package?'....Ludovic Courtès
2019-09-06packages: 'generate-package-cache' uses 'supported-package?'....Ludovic Courtès
2019-06-27Merge branch 'master' into core-updatesLudovic Courtès
2019-06-27packages: 'specification->package+output' distinguishes "no output specified"....Ludovic Courtès
2019-06-14packages: Remove 'search-bootstrap-binary'....Ludovic Courtès
2019-05-01Merge branch 'master' into core-updatesMarius Bakke
2019-03-28packages: Reintroduce 'find-newest-available-packages'....Ludovic Courtès
2019-03-14Merge branch 'staging' into core-updatesMarius Bakke
2019-03-11packages: Add the channel .go files to the search path....Ludovic Courtès
2019-02-20Merge branch 'staging' into core-updatesMarius Bakke
2019-02-16packages: Remove duplicates from package cache....Ludovic Courtès
2019-02-06Merge branch 'master' into core-updatesRicardo Wurmus
2019-01-15guix package: '--list-available' can use data from the cache....Ludovic Courtès
2019-01-15edit: Use 'specification->location' to read information from the cache....Ludovic Courtès
2019-01-15channels: Compute a package cache and use it....Ludovic Courtès
2019-01-15packages: Remove 'find-newest-available-packages'....Ludovic Courtès
2018-12-20gnu: Use i686-linux bootstrap binaries on x86_64-linux....Ludovic Courtès
2018-09-02Add (guix describe) and use it to initialize '%package-search-path'....Ludovic Courtès
2018-05-13packages: 'find-packages-by-name' properly honors version prefixes....Ludovic Courtès
2018-04-08discovery: Remove dependency on (guix ui)....Ludovic Courtès
2018-04-08Add (guix self)....Ludovic Courtès
2017-11-07packages: 'fold-packages' takes #:select? parameter....Ludovic Courtès
2017-09-01packages: 'fold-packages' takes an optional 'modules' parameter....Ludovic Courtès
2017-06-11packages: Add 'specifications->manifest'....Ludovic Courtès
2017-05-03Add (guix discovery)....Ludovic Courtès
2017-05-03ui: Rename '_' to 'G_'....Ludovic Courtès
2017-05-01packages: Remove support for PACKAGE-VERSION deprecated syntax....Ludovic Courtès
2017-03-08packages: Use PACKAGE@VERSION syntax when reporting ambiguities....Ludovic Courtès
2017-02-27packages: Add 'search-auxiliary-file'....Alex Kost
2017-01-28Use 'mlambda' instead of 'memoize'....Ludovic Courtès
2017-01-28Add (guix memoization)....Ludovic Courtès