diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:00 +0200< |
---|---|---|
2019-08-26 | installer: Partition as the last step.... | Tobias Geerinckx-Rice |
2019-07-25 | maint: Switch to Guile-JSON 3.x.... | Ludovic Courtès |
parent | 0dafac1cfbdffca8b0f655d85356409fed5bacdf (diff) | |
download | guix-236edb05d7aee0e88127a3809ff77786f934aec6.tar.gz guix-236edb05d7aee0e88127a3809ff77786f934aec6.zip |
gnu: nvme-cli: Separate :doc files.
* gnu/packages/linux.scm (nvme-cli)[outputs]: Add "doc".
[arguments]: Install HTML documentation there.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 31e1e78355..221293f5aa 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5175,10 +5175,11 @@ and manage nvme devices on a Linux system.") (base32 "1jv1xir6gm86yyk5846qqkcjhc1bq103zyxf794fznyinh4nhlbg")) (file-name (git-file-name name version)))) (build-system meson-build-system) + (outputs (list "out" "doc")) ; docs make up ~70% of total size (arguments (list #:configure-flags #~(list (format #f "-Dhtmldir=~a/share/doc/~a/html" - #$output #$name) + #$output:doc #$name) "-Ddocs=all"))) (native-inputs (list pkg-config)) (inputs (list libnvme json-c zlib)) |