2023-06-16 16:02:25 +02:00
|
|
|
final: prev:
|
2023-06-16 14:16:51 +02:00
|
|
|
{
|
2023-11-06 23:03:56 +01:00
|
|
|
# Set MPICH as default
|
|
|
|
mpi = final.mpich;
|
2023-08-25 18:12:00 +02:00
|
|
|
|
2023-11-06 23:03:56 +01:00
|
|
|
# Configure the network for MPICH
|
|
|
|
mpich = with final; prev.mpich.overrideAttrs (old: {
|
|
|
|
buildInput = old.buildInputs ++ [
|
|
|
|
libfabric
|
|
|
|
pmix
|
|
|
|
];
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--enable-sharedlib"
|
|
|
|
"--with-pm=no"
|
|
|
|
"--with-device=ch4:ofi"
|
|
|
|
"--with-pmi=pmix"
|
|
|
|
"--with-pmix=${final.pmix}"
|
|
|
|
"--with-libfabric=${final.libfabric}"
|
|
|
|
"--enable-g=log"
|
|
|
|
] ++ lib.optionals (lib.versionAtLeast gfortran.version "10") [
|
|
|
|
"FFLAGS=-fallow-argument-mismatch" # https://github.com/pmodels/mpich/issues/4300
|
|
|
|
"FCFLAGS=-fallow-argument-mismatch"
|
|
|
|
];
|
2023-06-16 16:02:25 +02:00
|
|
|
});
|
2023-08-25 18:12:46 +02:00
|
|
|
|
|
|
|
# Update ceph to 18.2.0 until it lands in nixpkgs, see:
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/247849
|
|
|
|
inherit (prev.callPackage ./ceph.nix {
|
|
|
|
lua = prev.lua5_4;
|
|
|
|
fmt = prev.fmt_8;
|
|
|
|
}) ceph ceph-client;
|
2023-09-21 21:34:18 +02:00
|
|
|
|
|
|
|
prometheus-slurm-exporter = prev.callPackage ./slurm-exporter.nix { };
|
2023-06-16 14:16:51 +02:00
|
|
|
}
|