File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
pkgs/development/libraries/science/math/p4est-sc Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 11{ lib , stdenv , fetchFromGitHub , mpiCheckPhaseHook
22, autoreconfHook , pkg-config
33, p4est-sc-debugEnable ? true , p4est-sc-mpiSupport ? true
4- , mpi , openssh , zlib
4+ , mpi , zlib
55} :
66
77let
88 dbg = lib . optionalString debugEnable "-dbg" ;
99 debugEnable = p4est-sc-debugEnable ;
1010 mpiSupport = p4est-sc-mpiSupport ;
11- isOpenmpi = mpiSupport && mpi . pname == "openmpi" ;
1211in
1312stdenv . mkDerivation {
1413 pname = "p4est-sc${ dbg } " ;
@@ -24,9 +23,7 @@ stdenv.mkDerivation {
2423
2524 strictDeps = true ;
2625 nativeBuildInputs = [ autoreconfHook pkg-config ] ;
27- propagatedNativeBuildInputs = lib . optional mpiSupport mpi
28- ++ lib . optional isOpenmpi openssh
29- ;
26+ propagatedNativeBuildInputs = lib . optional mpiSupport mpi ;
3027 propagatedBuildInputs = [ zlib ] ;
3128 inherit debugEnable mpiSupport ;
3229
@@ -49,7 +46,6 @@ stdenv.mkDerivation {
4946
5047 nativeCheckInputs = lib . optionals mpiSupport [
5148 mpiCheckPhaseHook
52- openssh
5349 ] ;
5450
5551 # disallow Darwin checks due to prototype incompatibility of qsort_r
You can’t perform that action at this time.
0 commit comments