15 stdenv.mkDerivation rec {
16 pname = "mpifileutils";
19 src = fetchFromGitHub {
21 repo = "mpifileutils";
23 hash = "sha256-3nls82awMMCwlfafsOy3AY8OvT9sE+BvvsDOY14YvQc=";
26 outputs = [ "out" "dev" "man" ];
28 nativeBuildInputs = [ cmake pkg-config ];
38 propagatedBuildInputs = [ mpi ];
41 description = "Suite of MPI-based tools to manage large datasets";
42 homepage = "https://hpc.github.io/mpifileutils";
43 platforms = platforms.linux;
44 license = licenses.bsd3;
45 maintainers = [ maintainers.markuskowa ];