56 lines
872 B
Nix
56 lines
872 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
stdenv,
|
||
|
|
fetchFromGitHub,
|
||
|
|
cmake,
|
||
|
|
pkg-config,
|
||
|
|
mpi,
|
||
|
|
attr,
|
||
|
|
dtcmp,
|
||
|
|
libarchive,
|
||
|
|
libcircle,
|
||
|
|
bzip2,
|
||
|
|
openssl,
|
||
|
|
}:
|
||
|
|
|
||
|
|
stdenv.mkDerivation rec {
|
||
|
|
pname = "mpifileutils";
|
||
|
|
version = "0.12";
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "hpc";
|
||
|
|
repo = "mpifileutils";
|
||
|
|
rev = "v${version}";
|
||
|
|
hash = "sha256-WnjStOLWP/VsZyl2wPqR1Q+YqlJQRCQ4R50uOyqkWuM=";
|
||
|
|
};
|
||
|
|
|
||
|
|
outputs = [
|
||
|
|
"out"
|
||
|
|
"dev"
|
||
|
|
"man"
|
||
|
|
];
|
||
|
|
|
||
|
|
nativeBuildInputs = [
|
||
|
|
cmake
|
||
|
|
pkg-config
|
||
|
|
];
|
||
|
|
buildInputs = [
|
||
|
|
attr
|
||
|
|
dtcmp
|
||
|
|
libarchive
|
||
|
|
libcircle
|
||
|
|
bzip2
|
||
|
|
openssl
|
||
|
|
];
|
||
|
|
|
||
|
|
propagatedBuildInputs = [ mpi ];
|
||
|
|
|
||
|
|
meta = with lib; {
|
||
|
|
description = "Suite of MPI-based tools to manage large datasets";
|
||
|
|
homepage = "https://hpc.github.io/mpifileutils";
|
||
|
|
platforms = platforms.linux;
|
||
|
|
license = licenses.bsd3;
|
||
|
|
maintainers = [ maintainers.markuskowa ];
|
||
|
|
};
|
||
|
|
}
|