mpifileutils: 0.11.1
This commit is contained in:
parent
e068478ba2
commit
514518e74b
1 changed files with 47 additions and 0 deletions
47
pkgs/by-name/mp/mpifileutils/package.nix
Normal file
47
pkgs/by-name/mp/mpifileutils/package.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, pkg-config
|
||||
, mpi
|
||||
, attr
|
||||
, dtcmp
|
||||
, libarchive
|
||||
, libcircle
|
||||
, bzip2
|
||||
, openssl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mpifileutils";
|
||||
version = "0.11.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hpc";
|
||||
repo = "mpifileutils";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-3nls82awMMCwlfafsOy3AY8OvT9sE+BvvsDOY14YvQc=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue