9 lines
166 B
Bash
9 lines
166 B
Bash
|
buildinputs="$perl"
|
||
|
. $stdenv/setup || exit 1
|
||
|
|
||
|
tar xvfz $src || exit 1
|
||
|
cd hello-* || exit 1
|
||
|
./configure --prefix=$out || exit 1
|
||
|
make || exit 1
|
||
|
make install || exit 1
|