bscpkgs/bsc/garlic/srun.nix
Rodrigo Arias Mallo 8110bc2976 New stage design
2020-09-02 17:07:09 +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
'';
}