diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-11-28 15:03:47 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-12-18 16:27:09 +0900 |
commit | 65c043edef33bc400f8c5d329c6fe33378c19548 (patch) | |
tree | 46aa3822a854800f1a2346e8baa7efbf93394781 /gnu | |
parent | de94238b3a4a02c0e905d7b58dd64606f4d87195 (diff) | |
download | guix-65c043edef33bc400f8c5d329c6fe33378c19548.tar.gz guix-65c043edef33bc400f8c5d329c6fe33378c19548.zip |
gnu: openpmix: Do not install HTML documentation.
This reduces the package size from 9 MiB to 5 MiB.
* gnu/packages/parallel.scm (openpmix) [source]: Add snippet.
Change-Id: I36e4a1e456225588df96f5eb70ed607505dae493
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/parallel.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm index a1f0c35657..99cd629603 100644 --- a/gnu/packages/parallel.scm +++ b/gnu/packages/parallel.scm @@ -705,7 +705,11 @@ single-instruction multiple-data (SIMD) intrinsics.") version "/pmix-" version ".tar.bz2")) (sha256 (base32 - "1j9xlhqrrmgjdkwakamn78y5gj756adi53hn25zksgr3is3l5d09")))) + "1j9xlhqrrmgjdkwakamn78y5gj756adi53hn25zksgr3is3l5d09")) + (snippet + '(begin (use-modules (guix build utils)) + ;; Remove ~5 MiB of pre-built HTML doc. + (delete-file-recursively "docs/_build/html"))))) (build-system gnu-build-system) (arguments (list |