It's hard to put the sourcing of ./.attrs.sh into all builder consistently - mistakes will happen. Thus, load structured attrs once in make-derivation and then source the remaining builder on top. This should fix quite a few builders with structured attributes in principle. Most importantly it helps substitute / substituteAll, which are required for bootstrap on some platforms.
12 lines
230 B
Bash
12 lines
230 B
Bash
boot_bin=$out/bin/boot
|
|
|
|
mkdir -pv $(dirname $boot_bin)
|
|
cp -v $src $boot_bin
|
|
chmod -v 755 $boot_bin
|
|
|
|
patchShebangs $boot_bin
|
|
|
|
sed -i \
|
|
-e "s;\${BOOT_JAVA_COMMAND:-java};\${BOOT_JAVA_COMMAND:-${jdk}/bin/java};g" \
|
|
$boot_bin
|