mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 09:43:30 +01:00
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.
30 lines
593 B
Bash
30 lines
593 B
Bash
doSub() {
|
|
local src=$1
|
|
local dst=$2
|
|
mkdir -p $(dirname $dst)
|
|
substituteAll $src $dst
|
|
}
|
|
|
|
subDir=/
|
|
for i in $scripts; do
|
|
if test "$(echo $i | cut -c1-2)" = "=>"; then
|
|
subDir=$(echo $i | cut -c3-)
|
|
else
|
|
dst=$out/$subDir/$(stripHash $i | sed 's/\.in//')
|
|
doSub $i $dst
|
|
chmod +x $dst # !!!
|
|
fi
|
|
done
|
|
|
|
subDir=/
|
|
for i in $substFiles; do
|
|
if test "$(echo $i | cut -c1-2)" = "=>"; then
|
|
subDir=$(echo $i | cut -c3-)
|
|
else
|
|
dst=$out/$subDir/$(stripHash $i | sed 's/\.in//')
|
|
doSub $i $dst
|
|
fi
|
|
done
|
|
|
|
mkdir -p $out/bin
|