{ stdenv }: { app , nixPrefix ? "" }: stdenv.mkDerivation rec { name = "${app.name}-srun"; preferLocalBuild = true; phases = [ "installPhase" ]; buildInputs = [ app ]; dontPatchShebangs = true; installPhase = '' mkdir -p $out/bin cat > $out/bin/run <