1source $stdenv/setup
2
3eval "$preInstall"
4
5args=
6
7target=$out
8if test -n "$dir"; then
9 target=$out/$dir/$name
10 mkdir -p $out/$dir
11fi
12
13substituteAll $src $target
14
15if test -n "$isExecutable"; then
16 chmod +x $target
17fi
18
19eval "$postInstall"