about summary refs log tree commit diff
path: root/third_party/nix/tests/dependencies.builder0.sh
blob: c37bf909a5f9b0f516ffcae5ebd83cf80647c932 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[ "${input1: -2}" = /. ]
[ "${input2: -2}" = /. ]

mkdir $out
echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar

ln -s $input2 $out/input-2

# Self-reference.
ln -s $out $out/self

# Executable.
echo program > $out/program
chmod +x $out/program

echo FOO