mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
6dba41fbcb
Use the attribute mpi to provide a system wide default MPI implementation. The default is openmpi (as before). This now allows for overriding the MPI implentation by using the overlay mechanism. Build all packages with mpich instead of the default openmpi can now be achived like this: self: super: { mpi = super.mpich; } All derivations that have been using "mpi ? null" to provide optional building with MPI have been change in the following way to allow for optional builds with MPI: { ... , mpi , useMpi ? false }
29 lines
1 KiB
Nix
29 lines
1 KiB
Nix
{ lib, stdenv, fetchurl, cmake, gfortran, blas, lapack, mpi, petsc, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "getdp-${version}";
|
|
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 ];
|
|
|
|
meta = with 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 = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ wucke13 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|