bscpkgs/bsc/garlic/launcher.nix

34 lines
477 B
Nix
Raw Normal View History

2020-08-05 00:38:33 +08:00
{
stdenv
}:
apps:
2020-08-10 21:27:46 +08:00
2020-08-05 00:38:33 +08:00
stdenv.mkDerivation {
2020-08-10 21:27:46 +08:00
name = "launcher";
2020-08-05 00:38:33 +08:00
preferLocalBuild = true;
buildInputs = [] ++ apps;
apps = apps;
2020-08-05 00:38:33 +08:00
phases = [ "installPhase" ];
dontPatchShebangs = true;
2020-08-05 00:38:33 +08:00
installPhase = ''
mkdir -p $out/apps
for j in $apps; do
ln -s $j $out/apps/$(basename $j)
2020-08-05 00:38:33 +08:00
done
mkdir -p $out/bin
2020-08-10 21:27:46 +08:00
cat > $out/bin/run <<EOF
#!/bin/sh
2020-08-05 00:38:33 +08:00
for j in $out/apps/*; do
\$j/bin/run
2020-08-05 00:38:33 +08:00
done
EOF
2020-08-10 21:27:46 +08:00
chmod +x $out/bin/run
2020-08-05 00:38:33 +08:00
'';
}