944a2dc835
(#153213) Issue #60004
36 lines
997 B
Nix
36 lines
997 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, gcc, boost, eigen, libxml2, mpi, python3, petsc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "precice";
|
|
version = "2.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "precice";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256:0p8d2xf4bl41b30yp38sqyp4fipwgcdhl0khxcv5g69fxvz2i2il";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DPRECICE_PETScMapping=OFF"
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DPYTHON_LIBRARIES=${python3.libPrefix}"
|
|
"-DPYTHON_INCLUDE_DIR=${python3}/include/${python3.libPrefix}"
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optional stdenv.isDarwin [ "-D_GNU_SOURCE" ];
|
|
|
|
nativeBuildInputs = [ cmake gcc ];
|
|
buildInputs = [ boost eigen libxml2 mpi python3 python3.pkgs.numpy ];
|
|
|
|
meta = {
|
|
description = "preCICE stands for Precise Code Interaction Coupling Environment";
|
|
license = with lib.licenses; [ gpl3 ];
|
|
homepage = "https://precice.org/";
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ Scriptkiddi ];
|
|
};
|
|
}
|
|
|
|
|