bscpkgs/bsc/garlic/control.nix
2020-08-25 18:35:58 +02:00

25 lines
383 B
Nix

{
stdenv
}:
program:
stdenv.mkDerivation {
inherit program;
name = "${program.name}-control";
preferLocalBuild = true;
phases = [ "installPhase" ];
dontPatchShebangs = true;
installPhase = ''
mkdir -p $out/bin
cat > $out/bin/run <<EOF
#!/bin/sh
set -e
for n in {1..30}; do
$program/bin/run
done
EOF
chmod +x $out/bin/run
'';
}