2022-09-19 22:51:38 +00:00
|
|
|
source $stdenv/setup
|
|
|
|
mkdir -p $out/${name}
|
2025-03-12 23:35:56 +00:00
|
|
|
|
|
|
|
writepath(){
|
|
|
|
mkdir -p $(dirname $1)
|
|
|
|
echo $2 > $1
|
|
|
|
}
|
|
|
|
if test -n "$propertiesText"; then
|
|
|
|
mkdir $out/.properties
|
|
|
|
( cd $out/.properties; eval "$propertiesText" )
|
|
|
|
fi
|
|
|
|
|
2022-09-26 10:46:09 +00:00
|
|
|
echo $serviceType > $out/${name}/type
|
2022-09-19 22:51:38 +00:00
|
|
|
mkdir -p $out/${name}/dependencies.d
|
|
|
|
echo $buildInputs > $out/buildInputs
|
2024-06-11 13:01:06 +00:00
|
|
|
test -n "$dependencies" && for path in $dependencies; do
|
|
|
|
d=$(dirname $(cd ${path} && ls -d */type))
|
2022-09-19 22:51:38 +00:00
|
|
|
touch $out/${name}/dependencies.d/$d
|
|
|
|
done
|
2024-06-11 13:01:06 +00:00
|
|
|
test -n "$contents" && for path in $contents; do
|
|
|
|
d=$(dirname $(cd ${path} && ls -d */type))
|
2022-09-19 22:51:38 +00:00
|
|
|
mkdir -p $out/${name}/contents.d
|
|
|
|
touch $out/${name}/contents.d/$d
|
|
|
|
done
|
2023-03-04 23:08:25 +00:00
|
|
|
|
2024-06-11 13:01:06 +00:00
|
|
|
if test -n "$controller" ; then
|
|
|
|
d=$(dirname $(cd ${controller} && ls -d */type))
|
|
|
|
echo "$d)" > $out/${name}/controller
|
2024-06-15 13:59:34 +00:00
|
|
|
# ^ why is there a closing paren here?
|
|
|
|
touch $out/${name}/dependencies.d/controlled
|
2024-06-11 13:01:06 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
for i in timeout-up timeout-down run notification-fd up down finish consumer-for producer-for pipeline-name restart-on-upgrade; do
|
2023-03-04 23:08:25 +00:00
|
|
|
test -n "$(printenv $i)" && (echo "$(printenv $i)" > $out/${name}/$i)
|
|
|
|
done
|
|
|
|
|
2024-02-13 21:41:43 +00:00
|
|
|
( cd $out && ln -s /run/services/outputs/${name} ./.outputs )
|
2022-09-21 23:10:55 +00:00
|
|
|
for i in $out/${name}/{down,up,run} ; do test -f $i && chmod +x $i; done
|
|
|
|
true
|