28 lines
672 B
Nix
28 lines
672 B
Nix
{ lib, stdenv, fetchFromGitHub, mpi, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lwgrp";
|
|
version = "1.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LLNL";
|
|
repo = "lwgrp";
|
|
rev = "v${version}";
|
|
hash = "sha256-ZpxxcCqK+qdvnCvobeBV6htRF8wThiQgVFYgEigqmIE=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
propagatedBuildInputs = [ mpi ];
|
|
|
|
meta = with lib; {
|
|
description = "Data structures and operations to group MPI processes as an ordered set";
|
|
homepage = "https://github.com/LLNL/lwgrp";
|
|
platforms = platforms.linux;
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.markuskowa ];
|
|
};
|
|
}
|