bscpkgs/bsc/garlic/control.nix

24 lines
372 B
Nix
Raw Normal View History

2020-08-11 18:05:43 +08:00
{
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
for n in {1..30}; do
$program/bin/run
done
EOF
chmod +x $out/bin/run
'';
}