getdp: 3.0.4 -> 3.3.0
This commit is contained in:
parent
4f58c15ee6
commit
c24b9a57c4
@ -1,24 +1,27 @@
|
|||||||
{ stdenv, fetchurl, cmake, gfortran, openblas, openmpi, python3 }:
|
{ stdenv, fetchurl, cmake, gfortran, openblas, openmpi, petsc, python3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "getdp";
|
name = "getdp-${version}";
|
||||||
version = "3.0.4";
|
version = "3.3.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://getdp.info/src/getdp-${version}-source.tgz";
|
url = "http://getdp.info/src/getdp-${version}-source.tgz";
|
||||||
sha256 = "0v3hg03lzw4hz28hm45hpv0gyydqz0wav7xvb5n0v0jrm47mrspv";
|
sha256 = "1pfviy2bw8z5y6c15czvlvyjjg9pvpgrj9fr54xfi2gmvs7zkgpf";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake gfortran ];
|
||||||
buildInputs = [ gfortran openblas openmpi python3 ];
|
buildInputs = [ openblas openmpi petsc python3 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A General Environment for the Treatment of Discrete Problems";
|
description = "A General Environment for the Treatment of Discrete Problems";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GetDP is a free finite element solver using mixed elements to discretize de Rham-type complexes in one, two and three dimensions.
|
GetDP is a free finite element solver using mixed elements to discretize
|
||||||
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.
|
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/;
|
homepage = "http://getdp.info/";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ wucke13 ];
|
maintainers = with maintainers; [ wucke13 ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user