parmmg: init at 1.4.0-unstable-2024-04-22

This commit is contained in:
Matias Zwinger
2024-07-16 15:51:38 +03:00
committed by FliegendeWurst
parent e26c18db13
commit c64af83ee0

View File

@@ -0,0 +1,59 @@
{
stdenv,
lib,
fetchFromGitHub,
unstableGitUpdater,
cmake,
gfortran,
perl,
mpi,
metis,
mmg,
}:
stdenv.mkDerivation {
pname = "parmmg";
version = "1.4.0-unstable-2024-04-22";
src = fetchFromGitHub {
owner = "MmgTools";
repo = "ParMmg";
rev = "f8a5338ea1bb2c778bfb4559c2c3974ba15b4730";
hash = "sha256-ieFHREAVeD7IwDUCtsMG5UKxahxM+wzNCAqCOHIHwu8=";
};
passthru.updateScript = unstableGitUpdater { };
nativeBuildInputs = [
cmake
gfortran
mpi
perl
];
buildInputs = [
mpi
metis
mmg
];
strictDeps = true;
preConfigure = ''
patchShebangs --build ./
'';
cmakeFlags = [
"-DBUILD_SHARED_LIBS:BOOL=TRUE"
"-DDOWNLOAD_MMG=OFF"
"-DDOWNLOAD_METIS=OFF"
"-Wno-dev"
];
meta = with lib; {
description = "Distributed parallelization of 3D volume mesh adaptation";
homepage = "http://www.mmgtools.org/";
platforms = platforms.unix;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ mkez ];
};
}