getdp: align with latest petsc dependency

This commit is contained in:
Carsten Burstedde 2021-07-01 22:31:19 +02:00
parent bcf9629def
commit 870b2847a4
No known key found for this signature in database
GPG key ID: 94563D7C039E3390

View file

@ -1,15 +1,19 @@
{ lib, stdenv, fetchurl, cmake, gfortran, blas, lapack, mpi, petsc, python3 }:
stdenv.mkDerivation rec {
name = "getdp-${version}";
pname = "getdp";
version = "3.3.0";
src = fetchurl {
url = "http://getdp.info/src/getdp-${version}-source.tgz";
sha256 = "1pfviy2bw8z5y6c15czvlvyjjg9pvpgrj9fr54xfi2gmvs7zkgpf";
};
nativeBuildInputs = [ cmake gfortran ];
buildInputs = [ blas lapack mpi petsc python3 ];
inherit (petsc) mpiSupport;
nativeBuildInputs = [ cmake python3 ];
buildInputs = [ gfortran blas lapack petsc ]
++ lib.optional mpiSupport mpi
;
cmakeFlags = lib.optional mpiSupport "-DENABLE_MPI=1";
meta = with lib; {
description = "A General Environment for the Treatment of Discrete Problems";