From 9129804230a3a4272731609f6418b876ba450575 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 7 Nov 2017 20:26:34 +0200 Subject: gnu: psm: Only use as an input on supported-systems. Syntax help supplied by bavier@member.fsf.org * gnu/packages/linux.scm (libfabric)[inputs]: Only use psm as an input on systems where psm is supported. * gnu/packages/mpi.scm (openmpi)[inputs]: Same. --- gnu/packages/mpi.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'gnu/packages/mpi.scm') diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm index 5054fa9d9c..d9a2094bea 100644 --- a/gnu/packages/mpi.scm +++ b/gnu/packages/mpi.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2014 Ian Denhardt ;;; Copyright © 2016 Andreas Enge ;;; Copyright © 2017 Dave Love +;;; Copyright © 2017 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -37,7 +38,8 @@ #:use-module (gnu packages perl) #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) - #:use-module (gnu packages valgrind)) + #:use-module (gnu packages valgrind) + #:use-module (ice-9 match)) (define-public hwloc (package @@ -126,7 +128,10 @@ bind processes, and much more.") `(("hwloc" ,hwloc "lib") ("gfortran" ,gfortran) ("libfabric" ,libfabric) - ("psm" ,psm) + ,@(match (%current-system) + ((member (package-supported-systems psm)) + `(("psm" ,psm))) + (_ `())) ("rdma-core" ,rdma-core) ("valgrind" ,valgrind))) (native-inputs -- cgit v1.2.3