Add control and nix-setup layers

This commit is contained in:
2020-08-11 12:05:43 +02:00
parent ef1aeb2cfa
commit 338736d257
5 changed files with 57 additions and 11 deletions

23
bsc/garlic/control.nix Normal file
View File

@@ -0,0 +1,23 @@
{
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
'';
}