52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
cmake,
|
|
gfortran,
|
|
blas,
|
|
lapack,
|
|
mpi,
|
|
petsc,
|
|
python3,
|
|
}:
|
|
|
|
let
|
|
mpiSupport = petsc.passthru.mpiSupport;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "getdp";
|
|
version = "3.6.0";
|
|
src = fetchurl {
|
|
url = "http://getdp.info/src/getdp-${version}-source.tgz";
|
|
hash = "sha256-nzefwCV+Z9BHDofuTfhR+vhqm3cCSiUT+7cbtn601N8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
python3
|
|
];
|
|
buildInputs = [
|
|
gfortran
|
|
blas
|
|
lapack
|
|
petsc
|
|
] ++ lib.optional mpiSupport mpi;
|
|
cmakeFlags = lib.optional mpiSupport "-DENABLE_MPI=1";
|
|
|
|
meta = with lib; {
|
|
description = "General Environment for the Treatment of Discrete Problems";
|
|
mainProgram = "getdp";
|
|
longDescription = ''
|
|
GetDP is a free finite element solver using mixed elements to discretize
|
|
de Rham-type complexes in one, two and three dimensions. The main
|
|
feature of GetDP is the closeness between the input data defining
|
|
discrete problems (written by the user in ASCII data files) and the
|
|
symbolic mathematical expressions of these problems.
|
|
'';
|
|
homepage = "http://getdp.info/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|