depot/third_party/nixpkgs/pkgs/by-name/pr/prrte/package.nix

87 lines
1.7 KiB
Nix

{
lib,
stdenv,
removeReferencesTo,
fetchFromGitHub,
autoconf,
automake,
libtool,
gitMinimal,
perl,
python3,
flex,
hwloc,
libevent,
zlib,
pmix,
}:
stdenv.mkDerivation rec {
pname = "prrte";
version = "3.0.9";
src = fetchFromGitHub {
owner = "openpmix";
repo = "prrte";
rev = "v${version}";
hash = "sha256-wLM+txjngY5gh/+yiaSKrenG6oIzF2dPgMumIGyCsXU=";
fetchSubmodules = true;
};
outputs = [
"out"
"dev"
];
postPatch = ''
patchShebangs ./autogen.pl ./config
# This is needed for multi-node jobs.
# mpirun/srun/prterun does not have "prted" in its path unless
# it is actively pulled in. Hard-coding the nix store path
# as a default universally solves this issue.
substituteInPlace src/runtime/prte_mca_params.c --replace-fail \
"prte_launch_agent = \"prted\"" "prte_launch_agent = \"$out/bin/prted\""
'';
preConfigure = ''
./autogen.pl
'';
postInstall = ''
moveToOutput "bin/prte_info" "''${!outputDev}"
# Fix a broken symlink, created due to FHS assumptions
rm "$out/bin/pcc"
ln -s ${lib.getDev pmix}/bin/pmixcc "''${!outputDev}"/bin/pcc
remove-references-to -t "''${!outputDev}" $(readlink -f $out/lib/libprrte${stdenv.hostPlatform.extensions.library})
'';
nativeBuildInputs = [
removeReferencesTo
perl
python3
autoconf
automake
libtool
flex
gitMinimal
];
buildInputs = [
libevent
hwloc
zlib
pmix
];
enableParallelBuilding = true;
meta = {
description = "PMIx Reference Runtime Environment";
homepage = "https://docs.prrte.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ markuskowa ];
platforms = lib.platforms.unix;
};
}