Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
Showing only changes of commit c7d2e2d866 - Show all commits

View File

@@ -1,6 +1,7 @@
{
stdenv
, bash
, writeText
}:
{
@@ -35,6 +36,8 @@ let
firstStage = (x: x.programPath) (elemAt linkStages 0);
jsonConf = writeText "garlic_config.json" (builtins.toJSON conf);
in
stdenv.mkDerivation {
name = "unit";
@@ -54,6 +57,9 @@ stdenv.mkDerivation {
mkdir \$GARLIC_UNIT
cd \$GARLIC_UNIT
# Copy the configuration for the unit to the output path
cp ${jsonConf} garlic_config.json
# Finally, execute the first stage:
exec ${firstStage}
EOF