[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/14: gnu: opensm: Use gexps.
|
From: |
guix-commits |
|
Subject: |
02/14: gnu: opensm: Use gexps. |
|
Date: |
Wed, 15 Nov 2023 05:38:01 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit d67fa732f71a0d71a979220d617e1ea7dc607173
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Oct 16 08:34:18 2023 +0200
gnu: opensm: Use gexps.
* gnu/packages/fabric-management.scm (opensm)[arguments]: Use gexps.
---
gnu/packages/fabric-management.scm | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/fabric-management.scm
b/gnu/packages/fabric-management.scm
index 545cd4ff67..740c570911 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -66,18 +66,20 @@
(inputs
(list rdma-core))
(arguments
- `(#:configure-flags '("--disable-static")
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'install-doc
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((base (assoc-ref outputs "out"))
- (doc (string-append base "/share/doc/"
- ,(package-name this-package) "-"
- ,(package-version this-package))))
- (for-each (lambda (file)
- (install-file file doc))
- (find-files "doc"))))))))
+ (list
+ #:configure-flags #~'("--disable-static")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'install-doc
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((base (assoc-ref outputs "out"))
+ (doc (string-append base "/share/doc/"
+ #$(package-name this-package)
+ "-"
+ #$(package-version this-package))))
+ (for-each (lambda (file)
+ (install-file file doc))
+ (find-files "doc"))))))))
(home-page "https://www.openfabrics.org/")
(synopsis "OpenIB InfiniBand Subnet Manager and management utilities")
(description "\
- branch master updated (b712e563cf -> f87c955725), guix-commits, 2023/11/15
- 02/14: gnu: opensm: Use gexps.,
guix-commits <=
- 01/14: gnu: opensm: Use the right version string for the doc directory., guix-commits, 2023/11/15
- 03/14: gnu: slurm: Add 23.02.6., guix-commits, 2023/11/15
- 05/14: gnu: opensm: Update to 3.3.24., guix-commits, 2023/11/15
- 06/14: gnu: ucx: Update to 1.15.0., guix-commits, 2023/11/15
- 10/14: gnu: openmpi: Update to 4.1.6., guix-commits, 2023/11/15
- 11/14: gnu: intel-mpi-benchmarks: Update to 2021.3., guix-commits, 2023/11/15
- 09/14: gnu: psm2: Update to 12.0., guix-commits, 2023/11/15
- 12/14: gnu: launchmon: Fix compilation with GCC 11., guix-commits, 2023/11/15
- 04/14: gnu: hwloc: Update to 2.9.3., guix-commits, 2023/11/15
- 08/14: gnu: libfabric: Update to 1.19.0., guix-commits, 2023/11/15