2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, gfortran, blas, lapack, mpi, petsc, python3 }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-14 22:03:04 +00:00
|
|
|
pname = "getdp";
|
2022-02-20 05:27:41 +00:00
|
|
|
version = "3.4.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://getdp.info/src/getdp-${version}-source.tgz";
|
2022-02-20 05:27:41 +00:00
|
|
|
sha256 = "sha256-d5YxJgtMf94PD6EHvIXpPBFPKC+skI/2v1K5Sad51hA=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
inherit (petsc) mpiSupport;
|
|
|
|
nativeBuildInputs = [ cmake python3 ];
|
|
|
|
buildInputs = [ gfortran blas lapack petsc ]
|
|
|
|
++ lib.optional mpiSupport mpi
|
|
|
|
;
|
|
|
|
cmakeFlags = lib.optional mpiSupport "-DENABLE_MPI=1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A General Environment for the Treatment of Discrete Problems";
|
|
|
|
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 = with maintainers; [ wucke13 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|