about summary refs log tree commit diff
path: root/pkgs/applications/science/math
diff options
context:
space:
mode:
authorwucke13 <wucke13@gmail.com>2019-04-30 12:15:15 +0200
committerAlyssa Ross <hi@alyssa.is>2020-03-13 04:10:20 +0000
commitc24b9a57c4b335a0e6cc549a3bba68ab08874cbb (patch)
treea60c82a1ea1ec1e3af78b5794376fbefeb823ba7 /pkgs/applications/science/math
parent4f58c15ee64e91f5a8d8b4664d929741a77dcb97 (diff)
downloadnixlib-c24b9a57c4b335a0e6cc549a3bba68ab08874cbb.tar
nixlib-c24b9a57c4b335a0e6cc549a3bba68ab08874cbb.tar.gz
nixlib-c24b9a57c4b335a0e6cc549a3bba68ab08874cbb.tar.bz2
nixlib-c24b9a57c4b335a0e6cc549a3bba68ab08874cbb.tar.lz
nixlib-c24b9a57c4b335a0e6cc549a3bba68ab08874cbb.tar.xz
nixlib-c24b9a57c4b335a0e6cc549a3bba68ab08874cbb.tar.zst
nixlib-c24b9a57c4b335a0e6cc549a3bba68ab08874cbb.zip
getdp: 3.0.4 -> 3.3.0
Diffstat (limited to 'pkgs/applications/science/math')
-rw-r--r--pkgs/applications/science/math/getdp/default.nix23
1 files changed, 13 insertions, 10 deletions
diff --git a/pkgs/applications/science/math/getdp/default.nix b/pkgs/applications/science/math/getdp/default.nix
index 3ccd89cf2c13..0ac2ea7d1b39 100644
--- a/pkgs/applications/science/math/getdp/default.nix
+++ b/pkgs/applications/science/math/getdp/default.nix
@@ -1,24 +1,27 @@
-{ stdenv, fetchurl, cmake, gfortran, openblas, openmpi, python3 }:
+{ stdenv, fetchurl, cmake, gfortran, openblas, openmpi, petsc, python3 }:
 
 stdenv.mkDerivation rec {
-  pname = "getdp";
-  version = "3.0.4";
+  name = "getdp-${version}";
+  version = "3.3.0";
   src = fetchurl {
     url = "http://getdp.info/src/getdp-${version}-source.tgz";
-    sha256 = "0v3hg03lzw4hz28hm45hpv0gyydqz0wav7xvb5n0v0jrm47mrspv";
+    sha256 = "1pfviy2bw8z5y6c15czvlvyjjg9pvpgrj9fr54xfi2gmvs7zkgpf";
   };
 
-  nativeBuildInputs = [ cmake ];
-  buildInputs = [ gfortran openblas openmpi python3 ];
+  nativeBuildInputs = [ cmake gfortran ];
+  buildInputs = [ openblas openmpi petsc python3 ];
 
   meta = with stdenv.lib; {
     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.
+      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 = stdenv.lib.licenses.gpl2Plus;
+    homepage = "http://getdp.info/";
+    license = licenses.gpl2Plus;
     maintainers = with maintainers; [ wucke13 ];
     platforms = platforms.linux;
   };