mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
c01f509e44
if theres a source $stdenv then this is needed for structuredAttrs
33 lines
662 B
Bash
33 lines
662 B
Bash
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
source $stdenv/setup
|
|
|
|
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
|