diff options
| author | Nigko Yerden <nigko.yerden@gmail.com> | 2025-12-25 11:27:01 +0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-02 21:47:27 +0000 |
| commit | f2ecc3cd4013573e155f2133b2fae212b97fd99e (patch) | |
| tree | 10dbc293c9a3d8f7c1dfe96b78512bcad55b8922 | |
| parent | 16fc49ce9ae05c94d78a720bbd0c9e62dbc486f8 (diff) | |
gnu: Add boost-mpi-numpy.
* gnu/packages/boost.scm (boost-mpi-numpy): New variable.
Change-Id: I91caad143e63f0c628429706ed3cfa3a740ed7f6
Reviewed-by: Andrew Wong <wongandj@runbox.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/boost.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm index 11ef45c41cf..e7a95ba765f 100644 --- a/gnu/packages/boost.scm +++ b/gnu/packages/boost.scm @@ -463,6 +463,15 @@ signals and slots system.") (home-page "https://www.boost.org") (synopsis "Boost C++ libraries with inclusion of Boost.MPI"))) +(define-public boost-mpi-numpy + (package + (inherit boost-mpi) + (name "boost-mpi-numpy") + (inputs + (modify-inputs (package-inputs boost-mpi) + (append python-numpy))) + (synopsis "Boost C++ libraries with inclusion of Boost.MPI and Boost.NumPy"))) + (define-public mdds (package (name "mdds") |
