about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorwucke13 <wucke13@gmail.com>2018-08-19 00:20:45 +0200
committerwucke13 <wucke13@gmail.com>2019-01-28 16:45:13 +0100
commit4f40b5e00e40222c444089891956feaff2d8691f (patch)
treeeefc041da544ed941306fbd9fa72ad22b5416e52 /pkgs/applications/science
parent07e06f3e0b8605761300fc3e57297d9755d73d4f (diff)
downloadnixlib-4f40b5e00e40222c444089891956feaff2d8691f.tar
nixlib-4f40b5e00e40222c444089891956feaff2d8691f.tar.gz
nixlib-4f40b5e00e40222c444089891956feaff2d8691f.tar.bz2
nixlib-4f40b5e00e40222c444089891956feaff2d8691f.tar.lz
nixlib-4f40b5e00e40222c444089891956feaff2d8691f.tar.xz
nixlib-4f40b5e00e40222c444089891956feaff2d8691f.tar.zst
nixlib-4f40b5e00e40222c444089891956feaff2d8691f.zip
getdp: init at 3.0.4
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/getdp/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/getdp/default.nix b/pkgs/applications/science/math/getdp/default.nix
new file mode 100644
index 000000000000..74e4b052fdb5
--- /dev/null
+++ b/pkgs/applications/science/math/getdp/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, cmake, gfortran, openblas, openmpi, python3 }:
+
+stdenv.mkDerivation rec {
+  name = "getdp-${version}";
+  version = "3.0.4";
+  src = fetchurl {
+    url = "http://getdp.info/src/getdp-${version}-source.tgz";
+    sha256 = "0v3hg03lzw4hz28hm45hpv0gyydqz0wav7xvb5n0v0jrm47mrspv";
+  };
+
+  nativeBuildInputs = [ cmake ];
+  buildInputs = [ gfortran openblas openmpi 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.
+    '';
+    homepage = http://getdp.info/;
+    license = stdenv.lib.licenses.gpl2Plus;
+    maintainers = with maintainers; [ wucke13 ];
+    platforms = platforms.linux;
+  };
+}