core/pkgs/by-name/op/openmpi/packages.nix

10 lines
245 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
with pkgs;
{
openmpi = callPackage ./. { };
mpi = openmpi; # this attribute should used to build MPI applications
mpiCheckPhaseHook = callPackage (path + "/pkgs/build-support/setup-hooks/mpi-check-hook") { };
}