Skip to content

Commit

Permalink
parmmg: init at 1.4.0-unstable-2024-04-22
Browse files Browse the repository at this point in the history
(cherry picked from commit c64af83)
  • Loading branch information
mk3z authored and github-actions[bot] committed Dec 19, 2024
1 parent 2ad28bc commit 50c5b26
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions pkgs/by-name/pa/parmmg/package.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 50c5b26

Please sign in to comment.