bscpkgs/garlic/stages/srun.nix

23 lines
347 B
Nix
Raw Normal View History

2020-08-18 00:50:18 +08:00
{
stdenv
}:
2020-09-02 16:44:13 +08:00
{
2020-09-02 23:07:09 +08:00
program
2020-09-02 16:44:13 +08:00
, nixPrefix ? ""
, srunOptions ? ""
}:
2020-08-18 00:50:18 +08:00
stdenv.mkDerivation rec {
2020-09-02 23:07:09 +08:00
name = "srun";
2020-08-18 00:50:18 +08:00
preferLocalBuild = true;
phases = [ "installPhase" ];
dontPatchShebangs = true;
installPhase = ''
2020-09-02 23:07:09 +08:00
cat > $out <<EOF
2020-08-18 00:50:18 +08:00
#!/bin/sh
2020-09-02 23:07:09 +08:00
exec srun --mpi=pmi2 ${srunOptions} ${nixPrefix}${program}
2020-08-18 00:50:18 +08:00
EOF
2020-09-02 23:07:09 +08:00
chmod +x $out
2020-08-18 00:50:18 +08:00
'';
}