mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
commit
6ed8c0b065
47
pkgs/by-name/hy/hypre/package.nix
Normal file
47
pkgs/by-name/hy/hypre/package.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
mpi,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
name = "hypre";
|
||||
version = "2.31.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hypre-space";
|
||||
repo = "hypre";
|
||||
rev = "refs/tags/v${finalAttrs.version}";
|
||||
hash = "sha256-eFOyM3IzQUNm7cSnORA3NrKYotEBmLKC8mi+fcwPMQA=";
|
||||
};
|
||||
|
||||
sourceRoot = "${finalAttrs.src.name}/src";
|
||||
|
||||
buildInputs = [ mpi ];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-mpi"
|
||||
"--enable-shared"
|
||||
];
|
||||
|
||||
preBuild = ''
|
||||
makeFlagsArray+=(AR="ar -rcu")
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/{include,lib}
|
||||
cp -r hypre/include/* $out/include
|
||||
cp -r hypre/lib/* $out/lib
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Parallel solvers for sparse linear systems featuring multigrid methods.";
|
||||
homepage = "https://computing.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods";
|
||||
platforms = platforms.unix;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mkez ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user