bscpkgs/garlic/stages/srun.nix
Rodrigo Arias Mallo 126f05e92c Simplify paths
2020-09-21 14:34:08 +02:00

23 lines
347 B
Nix

{
stdenv
}:
{
program
, nixPrefix ? ""
, srunOptions ? ""
}:
stdenv.mkDerivation rec {
name = "srun";
preferLocalBuild = true;
phases = [ "installPhase" ];
dontPatchShebangs = true;
installPhase = ''
cat > $out <<EOF
#!/bin/sh
exec srun --mpi=pmi2 ${srunOptions} ${nixPrefix}${program}
EOF
chmod +x $out
'';
}